#[repr(C)]pub struct attrl {
pub next: *mut attrl,
pub name: *mut c_char,
pub resource: *mut c_char,
pub value: *mut c_char,
pub op: batch_op,
}Expand description
This structure is identical to attropl so they can be used interchangably. The op field is not used.
Fields§
§next: *mut attrl§name: *mut c_char§resource: *mut c_char§value: *mut c_char§op: batch_opnot used
Trait Implementations§
Auto Trait Implementations§
impl Freeze for attrl
impl RefUnwindSafe for attrl
impl !Send for attrl
impl !Sync for attrl
impl Unpin for attrl
impl UnwindSafe for attrl
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