pub struct SortOrderInner {
pub sort_order: Option<Box<SortOrderProperties>>,
pub sort_priority: Option<String>,
}Expand description
SortOrderInner : This type is used to provide the sort order of compatibility properties returned in the response.
Fields§
§sort_order: Option<Box<SortOrderProperties>>§sort_priority: Option<String>The priority of the specified sort order provided.
For example, when a property is assigned Sort1, its values are sorted first. Values for the property assigned Sort2 are sorted second, and so on.
Valid values:
Sort1Sort2Sort3Sort4Sort5
Implementations§
Source§impl SortOrderInner
impl SortOrderInner
Sourcepub fn new() -> SortOrderInner
pub fn new() -> SortOrderInner
This type is used to provide the sort order of compatibility properties returned in the response.
Trait Implementations§
Source§impl Clone for SortOrderInner
impl Clone for SortOrderInner
Source§fn clone(&self) -> SortOrderInner
fn clone(&self) -> SortOrderInner
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 SortOrderInner
impl Debug for SortOrderInner
Source§impl Default for SortOrderInner
impl Default for SortOrderInner
Source§fn default() -> SortOrderInner
fn default() -> SortOrderInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SortOrderInner
impl<'de> Deserialize<'de> for SortOrderInner
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SortOrderInner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SortOrderInner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SortOrderInner
impl PartialEq for SortOrderInner
Source§impl Serialize for SortOrderInner
impl Serialize for SortOrderInner
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
impl StructuralPartialEq for SortOrderInner
Auto Trait Implementations§
impl Freeze for SortOrderInner
impl RefUnwindSafe for SortOrderInner
impl Send for SortOrderInner
impl Sync for SortOrderInner
impl Unpin for SortOrderInner
impl UnsafeUnpin for SortOrderInner
impl UnwindSafe for SortOrderInner
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