Struct sep2_common::packages::configuration::PriceResponseCfgList
source · pub struct PriceResponseCfgList {
pub price_response_cfg: Vec<PriceResponseCfg>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
configuration
only.Fields§
§price_response_cfg: Vec<PriceResponseCfg>
§all: Uint32
The number specifying “all” of the items in the list. Required on a response to a GET, ignored otherwise.
results: Uint32
Indicates the number of items in this page of results.
href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for PriceResponseCfgList
impl Clone for PriceResponseCfgList
source§fn clone(&self) -> PriceResponseCfgList
fn clone(&self) -> PriceResponseCfgList
Returns a copy 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 PriceResponseCfgList
impl Debug for PriceResponseCfgList
source§impl Default for PriceResponseCfgList
impl Default for PriceResponseCfgList
source§fn default() -> PriceResponseCfgList
fn default() -> PriceResponseCfgList
Returns the “default value” for a type. Read more
source§impl PartialEq<PriceResponseCfgList> for PriceResponseCfgList
impl PartialEq<PriceResponseCfgList> for PriceResponseCfgList
source§fn eq(&self, other: &PriceResponseCfgList) -> bool
fn eq(&self, other: &PriceResponseCfgList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for PriceResponseCfgList
impl SEList for PriceResponseCfgList
type Inner = PriceResponseCfg
fn all(&self) -> Uint32
fn all_mut(&mut self) -> &mut Uint32
fn results(&self) -> Uint32
fn results_mut(&mut self) -> &mut Uint32
fn list_as_slice(&self) -> &[Self::Inner]
fn list_mut(&mut self) -> &mut Vec<Self::Inner>
source§impl SEResource for PriceResponseCfgList
impl SEResource for PriceResponseCfgList
source§impl YaDeserialize for PriceResponseCfgList
impl YaDeserialize for PriceResponseCfgList
source§impl YaSerialize for PriceResponseCfgList
impl YaSerialize for PriceResponseCfgList
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for PriceResponseCfgList
impl StructuralEq for PriceResponseCfgList
impl StructuralPartialEq for PriceResponseCfgList
Auto Trait Implementations§
impl RefUnwindSafe for PriceResponseCfgList
impl Send for PriceResponseCfgList
impl Sync for PriceResponseCfgList
impl Unpin for PriceResponseCfgList
impl UnwindSafe for PriceResponseCfgList
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