#[repr(C)]pub struct Tag {
pub name: *mut c_char,
pub name_length: usize,
pub value: *mut c_char,
pub value_length: usize,
}Available on crate feature
capi only.Expand description
A tag in TLG file.
Fields§
§name: *mut c_charTag name.
name_length: usizeLength of tag name.
value: *mut c_charTag value.
value_length: usizeLength of tag value.
Auto Trait Implementations§
impl !Send for Tag
impl !Sync for Tag
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Unpin for Tag
impl UnsafeUnpin for Tag
impl UnwindSafe for Tag
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