pub struct CycleCount {
pub id: String,
pub location_id: String,
pub status: String,
pub scheduled_date: String,
pub counted_by: Option<String>,
pub discrepancies: Vec<Value>,
pub completed_at: Option<String>,
}Fields§
§id: String§location_id: String§status: String§scheduled_date: String§counted_by: Option<String>§discrepancies: Vec<Value>§completed_at: Option<String>Trait Implementations§
Source§impl Clone for CycleCount
impl Clone for CycleCount
Source§fn clone(&self) -> CycleCount
fn clone(&self) -> CycleCount
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 CycleCount
impl Debug for CycleCount
Source§impl<'de> Deserialize<'de> for CycleCount
impl<'de> Deserialize<'de> for CycleCount
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 CycleCount
impl RefUnwindSafe for CycleCount
impl Send for CycleCount
impl Sync for CycleCount
impl Unpin for CycleCount
impl UnsafeUnpin for CycleCount
impl UnwindSafe for CycleCount
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