pub struct RegisteredShard {
pub info: ShardInfo,
pub status: ShardStatus,
pub memory_bytes: u64,
}Expand description
Extended shard info with status tracking.
Fields§
§info: ShardInfoBasic shard information.
status: ShardStatusCurrent status of the shard.
memory_bytes: u64Memory usage in bytes.
Implementations§
Trait Implementations§
Source§impl Clone for RegisteredShard
impl Clone for RegisteredShard
Source§fn clone(&self) -> RegisteredShard
fn clone(&self) -> RegisteredShard
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 moreAuto Trait Implementations§
impl Freeze for RegisteredShard
impl RefUnwindSafe for RegisteredShard
impl Send for RegisteredShard
impl Sync for RegisteredShard
impl Unpin for RegisteredShard
impl UnsafeUnpin for RegisteredShard
impl UnwindSafe for RegisteredShard
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