pub struct DataTypeFillValueMetadataError(/* private fields */);Expand description
A data type and fill value metadata incompatibility error.
Implementations§
Source§impl DataTypeFillValueMetadataError
impl DataTypeFillValueMetadataError
Sourcepub fn new(data_type: String, fill_value_metadata: FillValueMetadataV3) -> Self
pub fn new(data_type: String, fill_value_metadata: FillValueMetadataV3) -> Self
Create a new DataTypeFillValueMetadataError.
Trait Implementations§
Source§impl Clone for DataTypeFillValueMetadataError
impl Clone for DataTypeFillValueMetadataError
Source§fn clone(&self) -> DataTypeFillValueMetadataError
fn clone(&self) -> DataTypeFillValueMetadataError
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 moreSource§impl Error for DataTypeFillValueMetadataError
impl Error for DataTypeFillValueMetadataError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for DataTypeFillValueMetadataError
impl Send for DataTypeFillValueMetadataError
impl Sync for DataTypeFillValueMetadataError
impl RefUnwindSafe for DataTypeFillValueMetadataError
impl Unpin for DataTypeFillValueMetadataError
impl UnwindSafe for DataTypeFillValueMetadataError
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