pub struct Datacenter {
pub id: DatacenterId,
pub region: Region,
pub nodes: HashSet<NodeId>,
pub priority: i32,
}Expand description
Datacenter metadata
Fields§
§id: DatacenterIdDatacenter ID
region: RegionGeographic region
nodes: HashSet<NodeId>Nodes in this datacenter
priority: i32Priority (higher = preferred for reads)
Implementations§
Source§impl Datacenter
impl Datacenter
Sourcepub fn new(id: DatacenterId, region: Region) -> Self
pub fn new(id: DatacenterId, region: Region) -> Self
Create a new datacenter
Sourcepub fn remove_node(&mut self, node_id: &NodeId) -> bool
pub fn remove_node(&mut self, node_id: &NodeId) -> bool
Remove a node from this datacenter
Trait Implementations§
Source§impl Clone for Datacenter
impl Clone for Datacenter
Source§fn clone(&self) -> Datacenter
fn clone(&self) -> Datacenter
Returns a duplicate of the value. Read more
1.0.0 · 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 Datacenter
impl RefUnwindSafe for Datacenter
impl Send for Datacenter
impl Sync for Datacenter
impl Unpin for Datacenter
impl UnwindSafe for Datacenter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more