pub struct SeString { /* private fields */ }
Expand description
SeString representation and utilities.
Trait Implementations§
Source§impl BinRead for SeString
impl BinRead for SeString
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_options: &ReadOptions,
__binrw_generated_var_arguments: Self::Args,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_options: &ReadOptions, __binrw_generated_var_arguments: Self::Args, ) -> BinResult<Self>
Read
Self
from the reader using the given ReadOptions
and
arguments.Source§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read
Self
from the reader using default arguments.Auto Trait Implementations§
impl Freeze for SeString
impl RefUnwindSafe for SeString
impl Send for SeString
impl Sync for SeString
impl Unpin for SeString
impl UnwindSafe for SeString
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
Source§impl<S> SheetMetadata for Swhere
S: ToString,
impl<S> SheetMetadata for Swhere
S: ToString,
Source§type Row = Row
type Row = Row
Available on crate feature
excel
only.Type of a successfully populated sheet row.
Source§type Error = Infallible
type Error = Infallible
Available on crate feature
excel
only.Type of a failed population attempt.
Source§fn populate_row(
&self,
row: Row,
) -> Result<<S as SheetMetadata>::Row, <S as SheetMetadata>::Error>
fn populate_row( &self, row: Row, ) -> Result<<S as SheetMetadata>::Row, <S as SheetMetadata>::Error>
Available on crate feature
excel
only.Populate a sheet from the provided row reader.