pub enum WorkbookSourceKind {
Unknown,
Path,
Bytes,
Reader,
}Expand description
The caller-facing input adapter that supplied workbook bytes.
Variants§
Unknown
Source details are not available.
Path
A filesystem path adapter supplied the bytes.
Bytes
An in-memory byte buffer supplied the bytes.
Reader
A generic Read + Seek adapter supplied the bytes.
Trait Implementations§
Source§impl Clone for WorkbookSourceKind
impl Clone for WorkbookSourceKind
Source§fn clone(&self) -> WorkbookSourceKind
fn clone(&self) -> WorkbookSourceKind
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 WorkbookSourceKind
Source§impl Debug for WorkbookSourceKind
impl Debug for WorkbookSourceKind
Source§impl Default for WorkbookSourceKind
impl Default for WorkbookSourceKind
Source§fn default() -> WorkbookSourceKind
fn default() -> WorkbookSourceKind
Returns the “default value” for a type. Read more
impl Eq for WorkbookSourceKind
Source§impl Hash for WorkbookSourceKind
impl Hash for WorkbookSourceKind
Source§impl PartialEq for WorkbookSourceKind
impl PartialEq for WorkbookSourceKind
impl StructuralPartialEq for WorkbookSourceKind
Auto Trait Implementations§
impl Freeze for WorkbookSourceKind
impl RefUnwindSafe for WorkbookSourceKind
impl Send for WorkbookSourceKind
impl Sync for WorkbookSourceKind
impl Unpin for WorkbookSourceKind
impl UnsafeUnpin for WorkbookSourceKind
impl UnwindSafe for WorkbookSourceKind
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.