No. Web services are generally meant to be platform-agnostic, so they define things like operation contracts (for operations performed on the server) and data contracts (for exchanging objects composed of simple data fields). But they don't define methods on objects as this would require knowledge of the client-side platforms. (For example, how would you marshal your IEquatable<>.Equals IL code to a Mac client?)
What you can do, if you have full control over your WCF service's clients, is deploy the same library to both the clients and the server. That is, you could put your data contract classes in Data.dll and deploy it to both the client and the server (as opposed to using the default proxy classes generated from the service contract on the client).