pub struct EXL {
pub version: i32,
pub entries: Vec<(String, i32)>,
}
Expand description
Represents an Excel List.
Fields§
§version: i32
The version of the list.
entries: Vec<(String, i32)>
The entries of the list.
Implementations§
source§impl EXL
impl EXL
sourcepub fn from_existing(buffer: ByteSpan<'_>) -> Option<EXL>
pub fn from_existing(buffer: ByteSpan<'_>) -> Option<EXL>
Initializes EXL
from an existing list.
pub fn write_to_buffer(&self) -> Option<ByteBuffer>
Auto Trait Implementations§
impl Freeze for EXL
impl RefUnwindSafe for EXL
impl Send for EXL
impl Sync for EXL
impl Unpin for EXL
impl UnwindSafe for EXL
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