#[non_exhaustive]pub enum TimeCurveParseError {
InvalidFormat,
InvalidNumComponents(usize),
ValueOutOfRange,
BadPositionOrder,
}Expand description
時間制御カーブのパースエラー。
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for TimeCurveParseError
impl Clone for TimeCurveParseError
Source§fn clone(&self) -> TimeCurveParseError
fn clone(&self) -> TimeCurveParseError
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 TimeCurveParseError
impl Debug for TimeCurveParseError
Source§impl Display for TimeCurveParseError
impl Display for TimeCurveParseError
Source§impl Error for TimeCurveParseError
impl Error for TimeCurveParseError
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()
Source§impl From<TimeCurveParseError> for TrackItemParseError
impl From<TimeCurveParseError> for TrackItemParseError
Source§fn from(source: TimeCurveParseError) -> Self
fn from(source: TimeCurveParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TimeCurveParseError
impl RefUnwindSafe for TimeCurveParseError
impl Send for TimeCurveParseError
impl Sync for TimeCurveParseError
impl Unpin for TimeCurveParseError
impl UnwindSafe for TimeCurveParseError
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