pub struct BookingSlot {
pub start: String,
pub end: String,
}Expand description
One offerable appointment, as absolute RFC 3339 instants.
Fields§
§start: String§end: StringTrait Implementations§
Source§impl Clone for BookingSlot
impl Clone for BookingSlot
Source§fn clone(&self) -> BookingSlot
fn clone(&self) -> BookingSlot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BookingSlot
impl Debug for BookingSlot
Source§impl<'de> Deserialize<'de> for BookingSlot
impl<'de> Deserialize<'de> for BookingSlot
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
impl Eq for BookingSlot
Source§impl PartialEq for BookingSlot
impl PartialEq for BookingSlot
Source§impl Serialize for BookingSlot
impl Serialize for BookingSlot
impl StructuralPartialEq for BookingSlot
Auto Trait Implementations§
impl Freeze for BookingSlot
impl RefUnwindSafe for BookingSlot
impl Send for BookingSlot
impl Sync for BookingSlot
impl Unpin for BookingSlot
impl UnsafeUnpin for BookingSlot
impl UnwindSafe for BookingSlot
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