pub struct DeleteVideoResponse {
pub status: String,
pub message: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
Delete response returned by the video delete endpoint.
Fields§
§status: String§message: Option<String>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for DeleteVideoResponse
impl Clone for DeleteVideoResponse
Source§fn clone(&self) -> DeleteVideoResponse
fn clone(&self) -> DeleteVideoResponse
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 DeleteVideoResponse
impl Debug for DeleteVideoResponse
Source§impl<'de> Deserialize<'de> for DeleteVideoResponse
impl<'de> Deserialize<'de> for DeleteVideoResponse
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
Source§impl PartialEq for DeleteVideoResponse
impl PartialEq for DeleteVideoResponse
Source§impl Serialize for DeleteVideoResponse
impl Serialize for DeleteVideoResponse
impl StructuralPartialEq for DeleteVideoResponse
Auto Trait Implementations§
impl Freeze for DeleteVideoResponse
impl RefUnwindSafe for DeleteVideoResponse
impl Send for DeleteVideoResponse
impl Sync for DeleteVideoResponse
impl Unpin for DeleteVideoResponse
impl UnsafeUnpin for DeleteVideoResponse
impl UnwindSafe for DeleteVideoResponse
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