#[repr(C)]pub struct YamlStackT<T> {
pub start: *mut T,
pub end: *mut T,
pub top: *mut T,
}
Expand description
The beginning of the stack.
Fields§
§start: *mut T
The beginning of the stack.
end: *mut T
The end of the stack.
top: *mut T
The top of the stack.
Trait Implementations§
Source§impl<T> Clone for YamlStackT<T>
impl<T> Clone for YamlStackT<T>
Source§impl<T: Debug> Debug for YamlStackT<T>
impl<T: Debug> Debug for YamlStackT<T>
Source§impl Default for YamlStackT<YamlAliasDataT>
impl Default for YamlStackT<YamlAliasDataT>
Source§impl Default for YamlStackT<YamlSimpleKeyT>
impl Default for YamlStackT<YamlSimpleKeyT>
Source§impl Default for YamlStackT<YamlTagDirectiveT>
impl Default for YamlStackT<YamlTagDirectiveT>
impl<T> Copy for YamlStackT<T>
Auto Trait Implementations§
impl<T> Freeze for YamlStackT<T>
impl<T> RefUnwindSafe for YamlStackT<T>where
T: RefUnwindSafe,
impl<T> !Send for YamlStackT<T>
impl<T> !Sync for YamlStackT<T>
impl<T> Unpin for YamlStackT<T>
impl<T> UnwindSafe for YamlStackT<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