Struct unsafe_libyaml::yaml_stack_t 
source · #[repr(C)]pub struct yaml_stack_t<T> {
    pub start: *mut T,
    pub end: *mut T,
    pub top: *mut T,
}Fields§
§start: *mut TThe beginning of the stack.
end: *mut TThe end of the stack.
top: *mut TThe top of the stack.
Trait Implementations§
source§impl<T> Clone for yaml_stack_t<T>
 
impl<T> Clone for yaml_stack_t<T>
impl<T> Copy for yaml_stack_t<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for yaml_stack_t<T>where T: RefUnwindSafe,
impl<T> !Send for yaml_stack_t<T>
impl<T> !Sync for yaml_stack_t<T>
impl<T> Unpin for yaml_stack_t<T>
impl<T> UnwindSafe for yaml_stack_t<T>where T: RefUnwindSafe,
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