IPRoute

Struct IPRoute 

Source
pub struct IPRoute { /* private fields */ }
Expand description

GLib type: Shared boxed type with reference counted clone semantics.

Implementations§

Source§

impl IPRoute

Source

pub fn as_ptr(&self) -> *mut NMIPRoute

Return the inner pointer to the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow(ptr: &*mut NMIPRoute) -> &Self

Borrows the underlying C value.

Source§

impl IPRoute

Source

pub fn new( family: i32, dest: &str, prefix: u32, next_hop: Option<&str>, metric: i64, ) -> Result<IPRoute, Error>

Creates a new #NMIPRoute object.

§family

the IP address family (AF_INET or AF_INET6)

§dest

the IP address of the route’s destination

§prefix

the address prefix length

§next_hop

the IP address of the next hop (or None)

§metric

the route metric (or -1 for “default”)

§Returns

the new #NMIPRoute object, or None on error

Source

pub fn equal_full(&self, other: &IPRoute, cmp_flags: u32) -> bool

Available on crate feature v1_10 only.

Determines if two #NMIPRoute objects contain the same destination, prefix, next hop, and metric.

§other

the #NMIPRoute to compare @self to.

§cmp_flags

tune how to compare attributes. Currently, only NM_IP_ROUTE_EQUAL_CMP_FLAGS_NONE (0) and NM_IP_ROUTE_EQUAL_CMP_FLAGS_WITH_ATTRS (1) is supported.

§Returns

true if the objects contain the same values, false if they do not.

Source

pub fn attribute_names(&self) -> Vec<GString>

Gets an array of attribute names defined on @self.

§Returns

a None-terminated array of attribute names

Source

pub fn dest(&self) -> GString

Gets the IP destination address property of this route object.

§Returns

the IP address of the route’s destination

Source

pub fn family(&self) -> i32

Gets the IP address family (eg, AF_INET) property of this route object.

§Returns

the IP address family

Source

pub fn metric(&self) -> i64

Gets the route metric property of this route object; lower values indicate “better” or more preferred routes; -1 indicates “default” (meaning NetworkManager will set it appropriately).

§Returns

the route metric

Source

pub fn next_hop(&self) -> GString

Gets the IP address of the next hop of this route; this will be None if the route has no next hop.

§Returns

the IP address of the next hop, or None if this is a device route.

Source

pub fn prefix(&self) -> u32

Gets the IP prefix (ie “24” or “30” etc) of this route.

§Returns

the IP prefix

Source

pub fn set_dest(&self, dest: &str)

Sets the destination property of this route object.

@dest must be a valid address of @self’s family. If you aren’t sure you have a valid address, use nm_inet_is_valid() to check it.

§dest

the route’s destination, as a string

Source

pub fn set_metric(&self, metric: i64)

Sets the metric property of this route object.

§metric

the route metric (or -1 for “default”)

Source

pub fn set_next_hop(&self, next_hop: Option<&str>)

Sets the next-hop property of this route object.

@next_hop (if non-None) must be a valid address of @self’s family. If you aren’t sure you have a valid address, use nm_utils_ipaddr_valid() to check it.

§next_hop

the route’s next hop, as a string

Source

pub fn set_prefix(&self, prefix: u32)

Sets the prefix property of this route object.

§prefix

the route prefix

Source

pub fn variant_attribute_spec() -> VariantAttributeSpec

Available on crate feature v1_8 only.
§Returns

the specifiers for route attributes

Trait Implementations§

Source§

impl Clone for IPRoute

Source§

fn clone(&self) -> Self

Makes a clone of this shared reference.

This increments the strong reference count of the reference. Dropping the reference will decrement it again.

1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for IPRoute

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<IPRoute> for Value

Source§

fn from(s: IPRoute) -> Self

Converts to this type from the input type.
Source§

impl HasParamSpec for IPRoute

Source§

type ParamSpec = ParamSpecBoxed

Source§

type SetValue = IPRoute

Preferred value to be used as setter for the associated ParamSpec.
Source§

type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<'_, IPRoute>

Source§

fn param_spec_builder() -> Self::BuilderFn

Source§

impl Hash for IPRoute

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for IPRoute

Source§

fn cmp(&self, other: &IPRoute) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for IPRoute

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for IPRoute

Source§

fn partial_cmp(&self, other: &IPRoute) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StaticType for IPRoute

Source§

fn static_type() -> Type

Returns the type identifier of Self.
Source§

impl Eq for IPRoute

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

Source§

impl<T> Property for T
where T: HasParamSpec,

Source§

type Value = T

Source§

impl<T> PropertyGet for T
where T: HasParamSpec,

Source§

type Value = T

Source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

Source§

impl<T> StaticTypeExt for T
where T: StaticType,

Source§

fn ensure_type()

Ensures that the type has been registered with the type system.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> TransparentType for T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,