pub struct OpusVideoCard {
pub alt: String,
pub height: i32,
pub id: String,
pub size: Option<Value>,
pub status: String,
pub tid: f64,
pub url: String,
pub width: i32,
}Expand description
Opus视频卡片
Fields§
§alt: String备用文本
height: i32卡片高度
id: String视频ID
size: Option<Value>大小
status: String状态
tid: f64类型ID
url: String卡片图片URL
width: i32卡片宽度
Trait Implementations§
Source§impl Clone for OpusVideoCard
impl Clone for OpusVideoCard
Source§fn clone(&self) -> OpusVideoCard
fn clone(&self) -> OpusVideoCard
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 OpusVideoCard
impl Debug for OpusVideoCard
Source§impl<'de> Deserialize<'de> for OpusVideoCard
impl<'de> Deserialize<'de> for OpusVideoCard
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 OpusVideoCard
impl RefUnwindSafe for OpusVideoCard
impl Send for OpusVideoCard
impl Sync for OpusVideoCard
impl Unpin for OpusVideoCard
impl UnwindSafe for OpusVideoCard
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