pub struct ExportWeightEntry {
pub uuid: String,
pub date: String,
pub weight_kg: f64,
pub source: String,
pub notes: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§uuid: String§date: String§weight_kg: f64§source: String§notes: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for ExportWeightEntry
impl Clone for ExportWeightEntry
Source§fn clone(&self) -> ExportWeightEntry
fn clone(&self) -> ExportWeightEntry
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 ExportWeightEntry
impl Debug for ExportWeightEntry
Source§impl<'de> Deserialize<'de> for ExportWeightEntry
impl<'de> Deserialize<'de> for ExportWeightEntry
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
Auto Trait Implementations§
impl Freeze for ExportWeightEntry
impl RefUnwindSafe for ExportWeightEntry
impl Send for ExportWeightEntry
impl Sync for ExportWeightEntry
impl Unpin for ExportWeightEntry
impl UnsafeUnpin for ExportWeightEntry
impl UnwindSafe for ExportWeightEntry
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