pub enum NetworkAccess {
Fetch,
Http,
Dns,
Listen,
}Variants§
Trait Implementations§
Source§impl Clone for NetworkAccess
impl Clone for NetworkAccess
Source§fn clone(&self) -> NetworkAccess
fn clone(&self) -> NetworkAccess
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 NetworkAccess
Source§impl Debug for NetworkAccess
impl Debug for NetworkAccess
impl Eq for NetworkAccess
Source§impl PartialEq for NetworkAccess
impl PartialEq for NetworkAccess
Source§fn eq(&self, other: &NetworkAccess) -> bool
fn eq(&self, other: &NetworkAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkAccess
Auto Trait Implementations§
impl Freeze for NetworkAccess
impl RefUnwindSafe for NetworkAccess
impl Send for NetworkAccess
impl Sync for NetworkAccess
impl Unpin for NetworkAccess
impl UnsafeUnpin for NetworkAccess
impl UnwindSafe for NetworkAccess
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