pub struct VideoCharacterResource {
pub id: Option<String>,
pub name: Option<String>,
pub created_at: u64,
}Available on crate feature
video-types only.Expand description
Character resource returned by character creation and retrieval.
Fields§
§id: Option<String>Identifier for the character.
name: Option<String>Display name for the character.
created_at: u64Unix timestamp (in seconds) when the character was created.
Trait Implementations§
Source§impl Clone for VideoCharacterResource
impl Clone for VideoCharacterResource
Source§fn clone(&self) -> VideoCharacterResource
fn clone(&self) -> VideoCharacterResource
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 VideoCharacterResource
impl Debug for VideoCharacterResource
Source§impl<'de> Deserialize<'de> for VideoCharacterResource
impl<'de> Deserialize<'de> for VideoCharacterResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VideoCharacterResource
impl RefUnwindSafe for VideoCharacterResource
impl Send for VideoCharacterResource
impl Sync for VideoCharacterResource
impl Unpin for VideoCharacterResource
impl UnsafeUnpin for VideoCharacterResource
impl UnwindSafe for VideoCharacterResource
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