Struct xComLib::ServiceKey
source · pub struct ServiceKey {
pub dxc_name: String,
pub dxc_version: String,
pub service_name: String,
/* private fields */
}
Fields§
§dxc_name: String
§dxc_version: String
§service_name: String
Implementations§
Trait Implementations§
source§impl Debug for ServiceKey
impl Debug for ServiceKey
source§impl Default for ServiceKey
impl Default for ServiceKey
source§fn default() -> ServiceKey
fn default() -> ServiceKey
Returns the “default value” for a type. Read more
source§impl RequestMessage for ServiceKey
impl RequestMessage for ServiceKey
fn compute_size(&self) -> u64
fn serial_with_output_stream( &self, os: &mut CodedOutputStream<'_> ) -> Result<(), Status>
fn parse_from_input_stream( &mut self, is: &mut CodedInputStream<'_> ) -> Result<(), Status>
fn compute_size_with_tag_and_len(&self) -> u64
fn serial_with_tag_and_len(&self, os: &mut CodedOutputStream<'_>)
fn serial(&self) -> Result<Vec<u8>, String>
fn parse_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Status>
fn parse_from_input_stream_with_tag_and_len( &mut self, is: &mut CodedInputStream<'_> )
fn parse_from_bytes_return_num(&mut self, bytes: &[u8]) -> Result<u64, Status>
Auto Trait Implementations§
impl RefUnwindSafe for ServiceKey
impl Send for ServiceKey
impl Sync for ServiceKey
impl Unpin for ServiceKey
impl UnwindSafe for ServiceKey
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