pub struct NDAttribute {
pub name: String,
pub description: String,
pub source: NDAttrSource,
pub value: NDAttrValue,
}Expand description
A named attribute attached to an NDArray.
Fields§
§name: String§description: String§source: NDAttrSource§value: NDAttrValueTrait Implementations§
Source§impl Clone for NDAttribute
impl Clone for NDAttribute
Source§fn clone(&self) -> NDAttribute
fn clone(&self) -> NDAttribute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NDAttribute
impl RefUnwindSafe for NDAttribute
impl Send for NDAttribute
impl Sync for NDAttribute
impl Unpin for NDAttribute
impl UnsafeUnpin for NDAttribute
impl UnwindSafe for NDAttribute
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