pub struct ProtoRpcMethod {
pub name: String,
pub request_type: String,
pub response_type: String,
pub client_streaming: bool,
pub server_streaming: bool,
pub options: BTreeMap<String, String>,
pub line: u32,
}Expand description
Fully owned protobuf RPC method contract.
Fields§
§name: StringRPC method name.
request_type: StringDeclared request message type.
response_type: StringDeclared response message type.
client_streaming: boolWhether the client streams request messages.
server_streaming: boolWhether the server streams response messages.
options: BTreeMap<String, String>Generator-relevant method options.
line: u32One-based declaration line.
Trait Implementations§
Source§impl Clone for ProtoRpcMethod
impl Clone for ProtoRpcMethod
Source§fn clone(&self) -> ProtoRpcMethod
fn clone(&self) -> ProtoRpcMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProtoRpcMethod
impl Debug for ProtoRpcMethod
Source§impl<'de> Deserialize<'de> for ProtoRpcMethod
impl<'de> Deserialize<'de> for ProtoRpcMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProtoRpcMethod
Source§impl PartialEq for ProtoRpcMethod
impl PartialEq for ProtoRpcMethod
Source§impl Serialize for ProtoRpcMethod
impl Serialize for ProtoRpcMethod
impl StructuralPartialEq for ProtoRpcMethod
Auto Trait Implementations§
impl Freeze for ProtoRpcMethod
impl RefUnwindSafe for ProtoRpcMethod
impl Send for ProtoRpcMethod
impl Sync for ProtoRpcMethod
impl Unpin for ProtoRpcMethod
impl UnsafeUnpin for ProtoRpcMethod
impl UnwindSafe for ProtoRpcMethod
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.