#[non_exhaustive]pub struct Candidate {
pub id: ResourceId,
pub owner: NodeId,
pub owner_incarnation: Incarnation,
pub local: bool,
pub state: State,
pub capacity: u32,
pub reserved: u32,
pub active: u32,
pub last_reserve_ms: u64,
}Expand description
One resource usable for a key, as the fleet sees it right now. Fields are expected to be added as the table learns to report more, so this is read rather than constructed from outside.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: ResourceId§owner: NodeId§owner_incarnation: Incarnation§local: boolOwned by this process.
state: State§capacity: u32§reserved: u32Units reserved by callers and not yet accepted by the owner.
active: u32Units the owner is executing.
last_reserve_ms: u64Implementations§
Trait Implementations§
impl Copy for Candidate
impl Eq for Candidate
impl StructuralPartialEq for Candidate
Auto Trait Implementations§
impl Freeze for Candidate
impl RefUnwindSafe for Candidate
impl Send for Candidate
impl Sync for Candidate
impl Unpin for Candidate
impl UnsafeUnpin for Candidate
impl UnwindSafe for Candidate
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