pub struct LinkedItem {
pub item: B64Url,
pub account: Option<B64Url>,
}Fields§
§item: B64UrlThe Item’s id that this LinkedItem refers to. Note that this Item might not be sent as part of the current exchange.
account: Option<B64Url>This member indicates the Account’s id the referenced Item belongs to. If not present, the Item belongs to the current Account being exchanged.
Trait Implementations§
Source§impl Clone for LinkedItem
impl Clone for LinkedItem
Source§fn clone(&self) -> LinkedItem
fn clone(&self) -> LinkedItem
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 LinkedItem
impl Debug for LinkedItem
Source§impl<'de> Deserialize<'de> for LinkedItem
impl<'de> Deserialize<'de> for LinkedItem
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 LinkedItem
impl RefUnwindSafe for LinkedItem
impl Send for LinkedItem
impl Sync for LinkedItem
impl Unpin for LinkedItem
impl UnwindSafe for LinkedItem
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