pub struct UpdateList {
pub updates: Option<Vec<Value>>,
}Fields§
§updates: Option<Vec<Value>>Updates is the entries, each carrying the date it describes.
Implementations§
Source§impl UpdateList
impl UpdateList
pub fn new() -> UpdateList
Trait Implementations§
Source§impl Clone for UpdateList
impl Clone for UpdateList
Source§fn clone(&self) -> UpdateList
fn clone(&self) -> UpdateList
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 UpdateList
impl Debug for UpdateList
Source§impl Default for UpdateList
impl Default for UpdateList
Source§fn default() -> UpdateList
fn default() -> UpdateList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateList
impl<'de> Deserialize<'de> for UpdateList
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 UpdateList
impl PartialEq for UpdateList
Source§impl Serialize for UpdateList
impl Serialize for UpdateList
impl StructuralPartialEq for UpdateList
Auto Trait Implementations§
impl Freeze for UpdateList
impl RefUnwindSafe for UpdateList
impl Send for UpdateList
impl Sync for UpdateList
impl Unpin for UpdateList
impl UnsafeUnpin for UpdateList
impl UnwindSafe for UpdateList
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