pub struct CompletePutAway {
pub put_away_id: Uuid,
pub actual_location_id: Option<i32>,
pub completed_by: Option<String>,
pub notes: Option<String>,
}Expand description
Input for completing a put-away task.
Fields§
§put_away_id: Uuid§actual_location_id: Option<i32>§completed_by: Option<String>§notes: Option<String>Trait Implementations§
Source§impl Clone for CompletePutAway
impl Clone for CompletePutAway
Source§fn clone(&self) -> CompletePutAway
fn clone(&self) -> CompletePutAway
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 CompletePutAway
impl Debug for CompletePutAway
Source§impl<'de> Deserialize<'de> for CompletePutAway
impl<'de> Deserialize<'de> for CompletePutAway
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompletePutAway, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompletePutAway, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CompletePutAway
impl Serialize for CompletePutAway
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CompletePutAway
impl RefUnwindSafe for CompletePutAway
impl Send for CompletePutAway
impl Sync for CompletePutAway
impl Unpin for CompletePutAway
impl UnsafeUnpin for CompletePutAway
impl UnwindSafe for CompletePutAway
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