// Take a look at the license at the top of the repository in the LICENSE file.
use glib::{prelude::*, translate::*};
use crate::{prelude::*, SocketControlMessage};
mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::SocketControlMessage>> Sealed for T {}
}
pub trait SocketControlMessageExtManual:
    sealed::Sealed + IsA<SocketControlMessage> + Sized
{
    #[doc(alias = "g_socket_control_message_serialize")]
    fn serialize(&self, data: &mut [u8]) {
        assert!(data.len() >= self.size());
        unsafe {
            crate::ffi::g_socket_control_message_serialize(
                self.as_ref().to_glib_none().0,
                data.as_mut_ptr() as *mut _,
            );
        }
    }
}
impl<O: IsA<SocketControlMessage>> SocketControlMessageExtManual for O {}