pub enum DataSegmentError {
NoName,
NameTooLong,
}Expand description
An enum representing error, which occurred while adding a segment counting custom mesh data.
Variants§
NoName
A segment must have a name, but it’s name was set to an empty string.
NameTooLong
Name over 255 byte limit.
Trait Implementations§
Source§impl Clone for DataSegmentError
impl Clone for DataSegmentError
Source§fn clone(&self) -> DataSegmentError
fn clone(&self) -> DataSegmentError
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 Debug for DataSegmentError
impl Debug for DataSegmentError
impl Copy for DataSegmentError
Auto Trait Implementations§
impl Freeze for DataSegmentError
impl RefUnwindSafe for DataSegmentError
impl Send for DataSegmentError
impl Sync for DataSegmentError
impl Unpin for DataSegmentError
impl UnwindSafe for DataSegmentError
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