pub struct VerifyCode {
pub verification_code: String,
}
Fields§
§verification_code: String
Trait Implementations§
source§impl BaseParser for VerifyCode
impl BaseParser for VerifyCode
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for VerifyCode
impl Clone for VerifyCode
source§fn clone(&self) -> VerifyCode
fn clone(&self) -> VerifyCode
Returns a copy 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 VerifyCode
impl Debug for VerifyCode
source§impl Default for VerifyCode
impl Default for VerifyCode
source§fn default() -> VerifyCode
fn default() -> VerifyCode
Returns the “default value” for a type. Read more
source§impl PacketVariable for VerifyCode
impl PacketVariable for VerifyCode
source§impl PartialEq<VerifyCode> for VerifyCode
impl PartialEq<VerifyCode> for VerifyCode
source§fn eq(&self, other: &VerifyCode) -> bool
fn eq(&self, other: &VerifyCode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifyCode
Auto Trait Implementations§
impl RefUnwindSafe for VerifyCode
impl Send for VerifyCode
impl Sync for VerifyCode
impl Unpin for VerifyCode
impl UnwindSafe for VerifyCode
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