pub struct TodoSnapshot {
pub active_titles: Vec<String>,
pub closed_titles: Vec<String>,
}Fields§
§active_titles: Vec<String>§closed_titles: Vec<String>Trait Implementations§
Source§impl Clone for TodoSnapshot
impl Clone for TodoSnapshot
Source§fn clone(&self) -> TodoSnapshot
fn clone(&self) -> TodoSnapshot
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 TodoSnapshot
impl Debug for TodoSnapshot
Source§impl Default for TodoSnapshot
impl Default for TodoSnapshot
Source§fn default() -> TodoSnapshot
fn default() -> TodoSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for TodoSnapshot
impl PartialEq for TodoSnapshot
impl Eq for TodoSnapshot
impl StructuralPartialEq for TodoSnapshot
Auto Trait Implementations§
impl Freeze for TodoSnapshot
impl RefUnwindSafe for TodoSnapshot
impl Send for TodoSnapshot
impl Sync for TodoSnapshot
impl Unpin for TodoSnapshot
impl UnsafeUnpin for TodoSnapshot
impl UnwindSafe for TodoSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.