pub struct SupplySource {
pub supply_source_id: Option<String>,
pub supply_source_code: Option<String>,
pub alias: Option<String>,
pub status: Option<SupplySourceStatusReadOnly>,
pub address: Option<Box<Address>>,
pub configuration: Option<Box<SupplySourceConfiguration>>,
pub capabilities: Option<Box<SupplySourceCapabilities>>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Expand description
SupplySource : The supply source details, including configurations and capabilities.
Fields§
§supply_source_id: Option<String>An Amazon generated unique supply source ID.
supply_source_code: Option<String>The seller-provided unique supply source code.
alias: Option<String>The custom alias for this supply source
status: Option<SupplySourceStatusReadOnly>§address: Option<Box<Address>>§configuration: Option<Box<SupplySourceConfiguration>>§capabilities: Option<Box<SupplySourceCapabilities>>§created_at: Option<String>A date and time in the rfc3339 format.
updated_at: Option<String>A date and time in the rfc3339 format.
Implementations§
Source§impl SupplySource
impl SupplySource
Sourcepub fn new() -> SupplySource
pub fn new() -> SupplySource
The supply source details, including configurations and capabilities.
Trait Implementations§
Source§impl Clone for SupplySource
impl Clone for SupplySource
Source§fn clone(&self) -> SupplySource
fn clone(&self) -> SupplySource
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 SupplySource
impl Debug for SupplySource
Source§impl Default for SupplySource
impl Default for SupplySource
Source§fn default() -> SupplySource
fn default() -> SupplySource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SupplySource
impl<'de> Deserialize<'de> for SupplySource
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
Source§impl PartialEq for SupplySource
impl PartialEq for SupplySource
Source§impl Serialize for SupplySource
impl Serialize for SupplySource
impl StructuralPartialEq for SupplySource
Auto Trait Implementations§
impl Freeze for SupplySource
impl RefUnwindSafe for SupplySource
impl Send for SupplySource
impl Sync for SupplySource
impl Unpin for SupplySource
impl UnsafeUnpin for SupplySource
impl UnwindSafe for SupplySource
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