Trait sourceview5::prelude::InetAddressMaskExt
source · pub trait InetAddressMaskExt: IsA<InetAddressMask> + Sealed + 'static {
// Provided methods
fn equal(&self, mask2: &impl IsA<InetAddressMask>) -> bool { ... }
fn address(&self) -> InetAddress { ... }
fn family(&self) -> SocketFamily { ... }
fn length(&self) -> u32 { ... }
fn matches(&self, address: &impl IsA<InetAddress>) -> bool { ... }
fn to_str(&self) -> GString { ... }
fn set_address<P>(&self, address: Option<&P>)
where P: IsA<InetAddress> { ... }
fn set_length(&self, length: u32) { ... }
fn connect_address_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + Send + Sync + 'static { ... }
fn connect_family_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + Send + Sync + 'static { ... }
fn connect_length_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + Send + Sync + 'static { ... }
}
Provided Methods§
fn equal(&self, mask2: &impl IsA<InetAddressMask>) -> bool
fn address(&self) -> InetAddress
fn family(&self) -> SocketFamily
fn length(&self) -> u32
fn matches(&self, address: &impl IsA<InetAddress>) -> bool
fn to_str(&self) -> GString
fn set_address<P>(&self, address: Option<&P>)where
P: IsA<InetAddress>,
fn set_length(&self, length: u32)
fn connect_address_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_family_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_length_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.