pub struct KnownJourney {
pub type_field: String,
pub hour: String,
pub minute: String,
pub interval_id: i64,
}
Fields§
§type_field: String
§hour: String
§minute: String
§interval_id: i64
Trait Implementations§
Source§impl Clone for KnownJourney
impl Clone for KnownJourney
Source§fn clone(&self) -> KnownJourney
fn clone(&self) -> KnownJourney
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 KnownJourney
impl Debug for KnownJourney
Source§impl Default for KnownJourney
impl Default for KnownJourney
Source§fn default() -> KnownJourney
fn default() -> KnownJourney
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KnownJourney
impl<'de> Deserialize<'de> for KnownJourney
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KnownJourney
impl PartialEq for KnownJourney
Source§impl Serialize for KnownJourney
impl Serialize for KnownJourney
impl StructuralPartialEq for KnownJourney
Auto Trait Implementations§
impl Freeze for KnownJourney
impl RefUnwindSafe for KnownJourney
impl Send for KnownJourney
impl Sync for KnownJourney
impl Unpin for KnownJourney
impl UnwindSafe for KnownJourney
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