#[repr(i32)]pub enum AsdfArrayStorage {
Default = 0,
Inline = 1,
Internal = 2,
External = 3,
}Expand description
Where an ndarray’s data is written, mirroring asdf_array_storage_t.
Variants§
Default = 0
Use the file-level setting.
Inline = 1
Inline in the tree.
Internal = 2
In an internal binary block.
External = 3
In an external file; reserved, not yet supported.
Trait Implementations§
Source§impl Clone for AsdfArrayStorage
impl Clone for AsdfArrayStorage
Source§fn clone(&self) -> AsdfArrayStorage
fn clone(&self) -> AsdfArrayStorage
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 AsdfArrayStorage
Source§impl Debug for AsdfArrayStorage
impl Debug for AsdfArrayStorage
Source§impl Default for AsdfArrayStorage
impl Default for AsdfArrayStorage
Source§fn default() -> AsdfArrayStorage
fn default() -> AsdfArrayStorage
Returns the “default value” for a type. Read more
impl Eq for AsdfArrayStorage
Source§impl PartialEq for AsdfArrayStorage
impl PartialEq for AsdfArrayStorage
impl StructuralPartialEq for AsdfArrayStorage
Auto Trait Implementations§
impl Freeze for AsdfArrayStorage
impl RefUnwindSafe for AsdfArrayStorage
impl Send for AsdfArrayStorage
impl Sync for AsdfArrayStorage
impl Unpin for AsdfArrayStorage
impl UnsafeUnpin for AsdfArrayStorage
impl UnwindSafe for AsdfArrayStorage
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