Skip to content

Instantly share code, notes, and snippets.

@defuz
Last active September 11, 2019 12:57
Show Gist options
  • Save defuz/5b773f34f77678a56bd09c5586bae168 to your computer and use it in GitHub Desktop.
Save defuz/5b773f34f77678a56bd09c5586bae168 to your computer and use it in GitHub Desktop.
trait MyServiceApi {
fn get_public_data(&self) -> PublicDataResponse;
fn get_private_data(&self) -> PrivateDataResponse;
fn post_private_data(&self, data: &PrivateData)
-> PostPrivateDataResponse;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment