pub struct NetworkSubtype0 {
pub allow_default: Option<bool>,
pub allow_dns: Option<bool>,
pub allow_global: Option<bool>,
pub allow_managed: Option<bool>,
}
Fields§
§allow_default: Option<bool>
Let ZeroTier modify the system’s default route.
allow_dns: Option<bool>
Let ZeroTier modify the system’s DNS settings.
allow_global: Option<bool>
Let ZeroTier manage IP addresses and route assignments that aren’t in private ranges (rfc1918).
allow_managed: Option<bool>
Let ZeroTier manage IP addresses and Route assignments.
Trait Implementations§
Source§impl Clone for NetworkSubtype0
impl Clone for NetworkSubtype0
Source§fn clone(&self) -> NetworkSubtype0
fn clone(&self) -> NetworkSubtype0
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NetworkSubtype0
impl Debug for NetworkSubtype0
Source§impl<'de> Deserialize<'de> for NetworkSubtype0
impl<'de> Deserialize<'de> for NetworkSubtype0
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NetworkSubtype0
impl RefUnwindSafe for NetworkSubtype0
impl Send for NetworkSubtype0
impl Sync for NetworkSubtype0
impl Unpin for NetworkSubtype0
impl UnwindSafe for NetworkSubtype0
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