Struct sep2_common::packages::di::SupportedLocaleList
source · pub struct SupportedLocaleList {
pub supported_locale: Vec<SupportedLocale>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
di
only.Fields§
§supported_locale: Vec<SupportedLocale>
§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 SupportedLocaleList
impl Clone for SupportedLocaleList
source§fn clone(&self) -> SupportedLocaleList
fn clone(&self) -> SupportedLocaleList
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 SupportedLocaleList
impl Debug for SupportedLocaleList
source§impl Default for SupportedLocaleList
impl Default for SupportedLocaleList
source§fn default() -> SupportedLocaleList
fn default() -> SupportedLocaleList
Returns the “default value” for a type. Read more
source§impl PartialEq<SupportedLocaleList> for SupportedLocaleList
impl PartialEq<SupportedLocaleList> for SupportedLocaleList
source§fn eq(&self, other: &SupportedLocaleList) -> bool
fn eq(&self, other: &SupportedLocaleList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for SupportedLocaleList
impl SEList for SupportedLocaleList
type Inner = SupportedLocale
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 SupportedLocaleList
impl SEResource for SupportedLocaleList
source§impl YaDeserialize for SupportedLocaleList
impl YaDeserialize for SupportedLocaleList
source§impl YaSerialize for SupportedLocaleList
impl YaSerialize for SupportedLocaleList
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 SupportedLocaleList
impl StructuralEq for SupportedLocaleList
impl StructuralPartialEq for SupportedLocaleList
Auto Trait Implementations§
impl RefUnwindSafe for SupportedLocaleList
impl Send for SupportedLocaleList
impl Sync for SupportedLocaleList
impl Unpin for SupportedLocaleList
impl UnwindSafe for SupportedLocaleList
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