pub struct SortOrderNameIdCursor {
pub sort_order: i32,
pub name: String,
pub id: i64,
}Expand description
Sort-order, name, and numeric id cursor for manually ordered named resources.
Fields§
§sort_order: i32Cursor sort order value.
name: StringCursor display or storage name.
id: i64Cursor numeric id used as a stable tie breaker.
Trait Implementations§
Source§impl Clone for SortOrderNameIdCursor
impl Clone for SortOrderNameIdCursor
Source§fn clone(&self) -> SortOrderNameIdCursor
fn clone(&self) -> SortOrderNameIdCursor
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 ComposeSchema for SortOrderNameIdCursor
impl ComposeSchema for SortOrderNameIdCursor
Source§impl Debug for SortOrderNameIdCursor
impl Debug for SortOrderNameIdCursor
Source§impl Serialize for SortOrderNameIdCursor
impl Serialize for SortOrderNameIdCursor
Auto Trait Implementations§
impl Freeze for SortOrderNameIdCursor
impl RefUnwindSafe for SortOrderNameIdCursor
impl Send for SortOrderNameIdCursor
impl Sync for SortOrderNameIdCursor
impl Unpin for SortOrderNameIdCursor
impl UnsafeUnpin for SortOrderNameIdCursor
impl UnwindSafe for SortOrderNameIdCursor
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