pub enum ObjectType {
MusicSong,
MusicAlbum,
MusicPlaylist,
MusicRadioStation,
VideoMovie,
VideoEpisode,
VideoTvShow,
VideoOther,
Article,
Book,
Profile,
Website,
}
Expand description
The type of object in the graph this refers to.
Variants§
MusicSong
A song.
MusicAlbum
A music album.
MusicPlaylist
A music playlist.
MusicRadioStation
A radio station
VideoMovie
A movie
VideoEpisode
An episode of a show.
VideoTvShow
A TV show.
VideoOther
Miscellaneous video.
Article
An article.
Book
A book.
Profile
A profile.
Website
A website.
Trait Implementations§
Source§impl Clone for ObjectType
impl Clone for ObjectType
Source§fn clone(&self) -> ObjectType
fn clone(&self) -> ObjectType
Returns a copy 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 ObjectType
impl RefUnwindSafe for ObjectType
impl Send for ObjectType
impl Sync for ObjectType
impl Unpin for ObjectType
impl UnwindSafe for ObjectType
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