pub type YamlStackT<T> = yaml_stack_t<T>;👎Deprecated since 0.0.6:
libyml is unmaintained. Migrate to a maintained alternative (unsafe-libyaml, yaml-rust2, or noyalib). See MIGRATION.md.
Expand description
Alias for unsafe_libyaml::yaml_stack_t.
Aliased Type§
#[repr(C)]pub struct YamlStackT<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.