#[repr(C)]pub enum xmlBufferAllocationScheme {
XML_BUFFER_ALLOC_DOUBLEIT = 0,
XML_BUFFER_ALLOC_EXACT = 1,
XML_BUFFER_ALLOC_IMMUTABLE = 2,
XML_BUFFER_ALLOC_IO = 3,
XML_BUFFER_ALLOC_HYBRID = 4,
XML_BUFFER_ALLOC_BOUNDED = 5,
}Variants§
XML_BUFFER_ALLOC_DOUBLEIT = 0
XML_BUFFER_ALLOC_EXACT = 1
XML_BUFFER_ALLOC_IMMUTABLE = 2
XML_BUFFER_ALLOC_IO = 3
XML_BUFFER_ALLOC_HYBRID = 4
XML_BUFFER_ALLOC_BOUNDED = 5
Trait Implementations§
Source§impl Clone for xmlBufferAllocationScheme
impl Clone for xmlBufferAllocationScheme
Source§fn clone(&self) -> xmlBufferAllocationScheme
fn clone(&self) -> xmlBufferAllocationScheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for xmlBufferAllocationScheme
Source§impl Debug for xmlBufferAllocationScheme
impl Debug for xmlBufferAllocationScheme
impl Eq for xmlBufferAllocationScheme
impl StructuralPartialEq for xmlBufferAllocationScheme
Auto Trait Implementations§
impl Freeze for xmlBufferAllocationScheme
impl RefUnwindSafe for xmlBufferAllocationScheme
impl Send for xmlBufferAllocationScheme
impl Sync for xmlBufferAllocationScheme
impl Unpin for xmlBufferAllocationScheme
impl UnsafeUnpin for xmlBufferAllocationScheme
impl UnwindSafe for xmlBufferAllocationScheme
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