#[non_exhaustive]pub struct NetworkPolicy {
pub capture: NetworkCaptureRules,
pub desired: NetworkStateTemplate,
pub current: Option<NetworkState>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.capture: NetworkCaptureRulesCapture rules for matching current network state
desired: NetworkStateTemplateTemplate of desired state, will apply capture results
current: Option<NetworkState>Current network state which the capture rules should run against
Implementations§
Source§impl NetworkPolicy
impl NetworkPolicy
Sourcepub fn validate(&self) -> Result<(), NmstateError>
pub fn validate(&self) -> Result<(), NmstateError>
Validate specified NetworkPolicy without apply
When NetworkPolicy.current set to Some(NetworkState), this function
will perform identical pre-apply validation as
NetworkState::apply_async() and
NetworkState::try_from(NetworkPolicy)
When NetworkPolicy.current set to None, nmstate will perform
best-effort validations due to the lacking of real hardware access.
Trait Implementations§
Source§impl Clone for NetworkPolicy
impl Clone for NetworkPolicy
Source§fn clone(&self) -> NetworkPolicy
fn clone(&self) -> NetworkPolicy
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 moreSource§impl Debug for NetworkPolicy
impl Debug for NetworkPolicy
Source§impl Default for NetworkPolicy
impl Default for NetworkPolicy
Source§fn default() -> NetworkPolicy
fn default() -> NetworkPolicy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkPolicy
impl<'de> Deserialize<'de> for NetworkPolicy
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
Source§impl PartialEq for NetworkPolicy
impl PartialEq for NetworkPolicy
Source§impl Serialize for NetworkPolicy
impl Serialize for NetworkPolicy
Source§impl TryFrom<NetworkPolicy> for NetworkState
impl TryFrom<NetworkPolicy> for NetworkState
Source§type Error = NmstateError
type Error = NmstateError
The type returned in the event of a conversion error.
Source§fn try_from(policy: NetworkPolicy) -> Result<Self, NmstateError>
fn try_from(policy: NetworkPolicy) -> Result<Self, NmstateError>
Performs the conversion.
impl Eq for NetworkPolicy
impl StructuralPartialEq for NetworkPolicy
Auto Trait Implementations§
impl Freeze for NetworkPolicy
impl RefUnwindSafe for NetworkPolicy
impl Send for NetworkPolicy
impl Sync for NetworkPolicy
impl Unpin for NetworkPolicy
impl UnwindSafe for NetworkPolicy
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.