Skip to main content

YamlStackT

Type Alias YamlStackT 

Source
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

Aliased Type§

#[repr(C)]
pub struct YamlStackT<T> { pub start: *mut T, pub end: *mut T, pub top: *mut T, }

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.