pub trait Property<'a> {
type Error;
type Inner;
// Required methods
fn kind() -> AttrKind;
fn into(value: Self::Inner, buf: &mut BytesMut, t: &'a [u8]);
fn try_from(buf: &'a [u8], t: &'a [u8]) -> Result<Self::Inner, Self::Error>;
}
Expand description
dyn faster_stun/turn message attribute.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.