pub struct TodoDelivery {
pub channels: Vec<TodoDeliveryChannel>,
pub target: Option<String>,
}Expand description
TodoDelivery model.
Fields§
§channels: Vec<TodoDeliveryChannel>§target: Option<String>Trait Implementations§
Source§impl Clone for TodoDelivery
impl Clone for TodoDelivery
Source§fn clone(&self) -> TodoDelivery
fn clone(&self) -> TodoDelivery
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 TodoDelivery
impl Debug for TodoDelivery
Source§impl Default for TodoDelivery
impl Default for TodoDelivery
Source§fn default() -> TodoDelivery
fn default() -> TodoDelivery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TodoDelivery
impl<'de> Deserialize<'de> for TodoDelivery
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 TodoDelivery
impl PartialEq for TodoDelivery
Source§impl Serialize for TodoDelivery
impl Serialize for TodoDelivery
impl StructuralPartialEq for TodoDelivery
Auto Trait Implementations§
impl Freeze for TodoDelivery
impl RefUnwindSafe for TodoDelivery
impl Send for TodoDelivery
impl Sync for TodoDelivery
impl Unpin for TodoDelivery
impl UnsafeUnpin for TodoDelivery
impl UnwindSafe for TodoDelivery
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