pub struct EnabledPriorityIdCursor {
pub enabled: bool,
pub priority: i32,
pub id: i64,
}Expand description
Enabled flag, priority, and numeric id cursor for prioritized toggle-like resources.
Fields§
§enabled: boolCursor enabled flag.
priority: i32Cursor priority value.
id: i64Cursor numeric id used as a stable tie breaker.
Trait Implementations§
Source§impl Clone for EnabledPriorityIdCursor
impl Clone for EnabledPriorityIdCursor
Source§fn clone(&self) -> EnabledPriorityIdCursor
fn clone(&self) -> EnabledPriorityIdCursor
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 EnabledPriorityIdCursor
impl ComposeSchema for EnabledPriorityIdCursor
Source§impl Debug for EnabledPriorityIdCursor
impl Debug for EnabledPriorityIdCursor
Source§impl Serialize for EnabledPriorityIdCursor
impl Serialize for EnabledPriorityIdCursor
Auto Trait Implementations§
impl Freeze for EnabledPriorityIdCursor
impl RefUnwindSafe for EnabledPriorityIdCursor
impl Send for EnabledPriorityIdCursor
impl Sync for EnabledPriorityIdCursor
impl Unpin for EnabledPriorityIdCursor
impl UnsafeUnpin for EnabledPriorityIdCursor
impl UnwindSafe for EnabledPriorityIdCursor
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