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