use crate::{SocketAddress, SocketConnectable, UnixSocketAddressType};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "GUnixSocketAddress")]
pub struct UnixSocketAddress(Object<ffi::GUnixSocketAddress, ffi::GUnixSocketAddressClass>) @extends SocketAddress, @implements SocketConnectable;
match fn {
type_ => || ffi::g_unix_socket_address_get_type(),
}
}
impl UnixSocketAddress {
pub const NONE: Option<&'static UnixSocketAddress> = None;
#[doc(alias = "g_unix_socket_address_abstract_names_supported")]
pub fn abstract_names_supported() -> bool {
unsafe { from_glib(ffi::g_unix_socket_address_abstract_names_supported()) }
}
}
unsafe impl Send for UnixSocketAddress {}
unsafe impl Sync for UnixSocketAddress {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::UnixSocketAddress>> Sealed for T {}
}
pub trait UnixSocketAddressExt: IsA<UnixSocketAddress> + sealed::Sealed + 'static {
#[doc(alias = "g_unix_socket_address_get_address_type")]
#[doc(alias = "get_address_type")]
fn address_type(&self) -> UnixSocketAddressType {
unsafe {
from_glib(ffi::g_unix_socket_address_get_address_type(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "g_unix_socket_address_get_is_abstract")]
#[doc(alias = "get_is_abstract")]
fn is_abstract(&self) -> bool {
unsafe {
from_glib(ffi::g_unix_socket_address_get_is_abstract(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "g_unix_socket_address_get_path_len")]
#[doc(alias = "get_path_len")]
fn path_len(&self) -> usize {
unsafe { ffi::g_unix_socket_address_get_path_len(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "path-as-array")]
fn path_as_array(&self) -> Option<glib::ByteArray> {
ObjectExt::property(self.as_ref(), "path-as-array")
}
}
impl<O: IsA<UnixSocketAddress>> UnixSocketAddressExt for O {}