pub enum DeviceSiteLocality {
EdgeLocal,
HostLocal,
Remote,
}Expand description
Placement locality advertised by a device site.
Variants§
EdgeLocal
Device adapter runs at the device or edge boundary.
HostLocal
Site runs on the host but not at the device edge.
Remote
Site crosses a remote transport boundary.
Trait Implementations§
Source§impl Clone for DeviceSiteLocality
impl Clone for DeviceSiteLocality
Source§fn clone(&self) -> DeviceSiteLocality
fn clone(&self) -> DeviceSiteLocality
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 moreimpl Copy for DeviceSiteLocality
Source§impl Debug for DeviceSiteLocality
impl Debug for DeviceSiteLocality
impl Eq for DeviceSiteLocality
Source§impl PartialEq for DeviceSiteLocality
impl PartialEq for DeviceSiteLocality
impl StructuralPartialEq for DeviceSiteLocality
Auto Trait Implementations§
impl Freeze for DeviceSiteLocality
impl RefUnwindSafe for DeviceSiteLocality
impl Send for DeviceSiteLocality
impl Sync for DeviceSiteLocality
impl Unpin for DeviceSiteLocality
impl UnsafeUnpin for DeviceSiteLocality
impl UnwindSafe for DeviceSiteLocality
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