pub struct CMsgClientAuthList { /* private fields */ }Implementations§
Source§impl CMsgClientAuthList
impl CMsgClientAuthList
pub fn new() -> CMsgClientAuthList
pub fn default_instance() -> &'static CMsgClientAuthList
pub fn clear_tokens_left(&mut self)
pub fn has_tokens_left(&self) -> bool
pub fn set_tokens_left(&mut self, v: u32)
pub fn get_tokens_left<'a>(&self) -> u32
pub fn clear_last_request_seq(&mut self)
pub fn has_last_request_seq(&self) -> bool
pub fn set_last_request_seq(&mut self, v: u32)
pub fn get_last_request_seq<'a>(&self) -> u32
pub fn clear_last_request_seq_from_server(&mut self)
pub fn has_last_request_seq_from_server(&self) -> bool
pub fn set_last_request_seq_from_server(&mut self, v: u32)
pub fn get_last_request_seq_from_server<'a>(&self) -> u32
pub fn clear_tickets(&mut self)
pub fn set_tickets(&mut self, v: RepeatedField<CMsgAuthTicket>)
pub fn mut_tickets<'a>(&'a mut self) -> &'a mut RepeatedField<CMsgAuthTicket>
pub fn take_tickets(&mut self) -> RepeatedField<CMsgAuthTicket>
pub fn get_tickets<'a>(&'a self) -> &'a [CMsgAuthTicket]
pub fn clear_app_ids(&mut self)
pub fn set_app_ids(&mut self, v: Vec<u32>)
pub fn mut_app_ids<'a>(&'a mut self) -> &'a mut Vec<u32>
pub fn take_app_ids(&mut self) -> Vec<u32>
pub fn get_app_ids<'a>(&'a self) -> &'a [u32]
pub fn clear_message_sequence(&mut self)
pub fn has_message_sequence(&self) -> bool
pub fn set_message_sequence(&mut self, v: u32)
pub fn get_message_sequence<'a>(&self) -> u32
Trait Implementations§
Source§impl Clone for CMsgClientAuthList
impl Clone for CMsgClientAuthList
Source§fn clone(&self) -> CMsgClientAuthList
fn clone(&self) -> CMsgClientAuthList
Returns a duplicate of the value. Read more
1.0.0 · 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 CMsgClientAuthList
impl Debug for CMsgClientAuthList
Source§impl Default for CMsgClientAuthList
impl Default for CMsgClientAuthList
Source§fn default() -> CMsgClientAuthList
fn default() -> CMsgClientAuthList
Returns the “default value” for a type. Read more
Source§impl Message for CMsgClientAuthList
impl Message for CMsgClientAuthList
fn is_initialized(&self) -> bool
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> ProtobufResult<()>
fn compute_size(&self) -> u32
fn write_to_with_cached_sizes( &self, os: &mut CodedOutputStream<'_>, ) -> ProtobufResult<()>
fn get_cached_size(&self) -> u32
fn get_unknown_fields<'s>(&'s self) -> &'s UnknownFields
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut UnknownFields
fn type_id(&self) -> TypeId
fn as_any(&self) -> &dyn Any
fn descriptor(&self) -> &'static MessageDescriptor
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<(), ProtobufError>
fn write_length_delimited_to( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), ProtobufError>
fn write_length_delimited_to_vec( &self, vec: &mut Vec<u8>, ) -> Result<(), ProtobufError>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>
fn check_initialized(&self) -> Result<(), ProtobufError>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>
fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>
fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
fn write_length_delimited_to_writer( &self, w: &mut dyn Write, ) -> Result<(), ProtobufError>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn into_any(self: Box<Self>) -> Box<dyn Any>
Source§impl MessageStatic for CMsgClientAuthList
impl MessageStatic for CMsgClientAuthList
fn new() -> CMsgClientAuthList
fn descriptor_static( _: Option<CMsgClientAuthList>, ) -> &'static MessageDescriptor
Source§impl PartialEq for CMsgClientAuthList
impl PartialEq for CMsgClientAuthList
impl Sync for CMsgClientAuthList
Auto Trait Implementations§
impl !Freeze for CMsgClientAuthList
impl !RefUnwindSafe for CMsgClientAuthList
impl Send for CMsgClientAuthList
impl Unpin for CMsgClientAuthList
impl UnwindSafe for CMsgClientAuthList
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