Struct xComLib::ServiceInfo
source · pub struct ServiceInfo {
pub dxc_name: String,
pub dxc_version: String,
pub service_name: String,
pub md5: String,
pub service_id: i64,
pub online_time: i64,
/* private fields */
}
Fields§
§dxc_name: String
§dxc_version: String
§service_name: String
§md5: String
§service_id: i64
§online_time: i64
Trait Implementations§
source§impl Debug for ServiceInfo
impl Debug for ServiceInfo
source§impl Default for ServiceInfo
impl Default for ServiceInfo
source§fn default() -> ServiceInfo
fn default() -> ServiceInfo
Returns the “default value” for a type. Read more
source§impl RequestMessage for ServiceInfo
impl RequestMessage for ServiceInfo
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 ServiceInfo
impl Send for ServiceInfo
impl Sync for ServiceInfo
impl Unpin for ServiceInfo
impl UnwindSafe for ServiceInfo
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