pub struct SdesItem {
pub kind: u8,
pub value: Bytes,
}Expand description
One source description item.
Fields§
§kind: u8Which attribute this is; 1 is CNAME (RFC 3550 §6.5).
value: BytesThe text, carried verbatim. UTF-8 by the RFC, but never trusted to be.
Trait Implementations§
impl Eq for SdesItem
impl StructuralPartialEq for SdesItem
Auto Trait Implementations§
impl !Freeze for SdesItem
impl RefUnwindSafe for SdesItem
impl Send for SdesItem
impl Sync for SdesItem
impl Unpin for SdesItem
impl UnsafeUnpin for SdesItem
impl UnwindSafe for SdesItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more