Trait ConnectionActive
Source pub trait ConnectionActive {
Show 16 methods
// Required methods
fn connection(&self) -> Result<Path<'static>, Error>;
fn specific_object(&self) -> Result<Path<'static>, Error>;
fn id(&self) -> Result<String, Error>;
fn uuid(&self) -> Result<String, Error>;
fn type_(&self) -> Result<String, Error>;
fn devices(&self) -> Result<Vec<Path<'static>>, Error>;
fn state(&self) -> Result<u32, Error>;
fn state_flags(&self) -> Result<u32, Error>;
fn default(&self) -> Result<bool, Error>;
fn ip4_config(&self) -> Result<Path<'static>, Error>;
fn dhcp4_config(&self) -> Result<Path<'static>, Error>;
fn default6(&self) -> Result<bool, Error>;
fn ip6_config(&self) -> Result<Path<'static>, Error>;
fn dhcp6_config(&self) -> Result<Path<'static>, Error>;
fn vpn(&self) -> Result<bool, Error>;
fn master(&self) -> Result<Path<'static>, Error>;
}