pub enum DatabaseReferenceError {
Show 13 variants
TrackDetatchedAlbumRef {
track: TrackId,
album: AlbumId,
},
TrackDanglingAlbumRef {
track: TrackId,
album: AlbumId,
},
TrackDetatchedArtistRef {
track: TrackId,
artist: ArtistId,
},
TrackDanglingArtistRef {
track: TrackId,
artist: ArtistId,
},
AlbumDetatchedTrackRef {
album: AlbumId,
track: TrackId,
},
AlbumDanglingTrackRef {
album: AlbumId,
track: TrackId,
},
AlbumDetatchedArtistRef {
album: AlbumId,
artist: ArtistId,
},
AlbumDanglingArtistRef {
album: AlbumId,
artist: ArtistId,
},
ArtistDanglingTrackRef {
artist: ArtistId,
track: TrackId,
},
ArtistDetachedTrackRef {
artist: ArtistId,
track: TrackId,
},
ArtistDanglingAlbumRef {
artist: ArtistId,
album: AlbumId,
},
ArtistDetachedAlbumRef {
artist: ArtistId,
album: AlbumId,
},
ArtistInvalidTrackRef {
artist: ArtistId,
track: TrackId,
album: AlbumId,
},
}Variants§
TrackDetatchedAlbumRef
TrackDanglingAlbumRef
TrackDetatchedArtistRef
TrackDanglingArtistRef
AlbumDetatchedTrackRef
AlbumDanglingTrackRef
AlbumDetatchedArtistRef
AlbumDanglingArtistRef
ArtistDanglingTrackRef
ArtistDetachedTrackRef
ArtistDanglingAlbumRef
ArtistDetachedAlbumRef
ArtistInvalidTrackRef
Trait Implementations§
Source§impl Debug for DatabaseReferenceError
impl Debug for DatabaseReferenceError
Source§impl Display for DatabaseReferenceError
impl Display for DatabaseReferenceError
Source§impl Error for DatabaseReferenceError
impl Error for DatabaseReferenceError
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 DatabaseReferenceError
impl RefUnwindSafe for DatabaseReferenceError
impl Send for DatabaseReferenceError
impl Sync for DatabaseReferenceError
impl Unpin for DatabaseReferenceError
impl UnsafeUnpin for DatabaseReferenceError
impl UnwindSafe for DatabaseReferenceError
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more