pub struct SlackBlockVideo {
pub alt_text: String,
pub author_name: Option<String>,
pub block_id: Option<String>,
pub description: Option<BlockElementPlaneTextInput>,
pub provider_icon_url: Option<String>,
pub provider_name: Option<String>,
pub title: Option<BlockElementPlaneTextInput>,
pub title_url: Option<String>,
pub thumbnail_url: String,
pub video_url: String,
}Fields§
§alt_text: String§block_id: Option<String>§description: Option<BlockElementPlaneTextInput>§provider_icon_url: Option<String>§provider_name: Option<String>§title: Option<BlockElementPlaneTextInput>§title_url: Option<String>§thumbnail_url: String§video_url: StringTrait Implementations§
Source§impl Clone for SlackBlockVideo
impl Clone for SlackBlockVideo
Source§fn clone(&self) -> SlackBlockVideo
fn clone(&self) -> SlackBlockVideo
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 SlackBlockVideo
impl Debug for SlackBlockVideo
Source§impl Default for SlackBlockVideo
impl Default for SlackBlockVideo
Source§fn default() -> SlackBlockVideo
fn default() -> SlackBlockVideo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SlackBlockVideo
impl<'de> Deserialize<'de> for SlackBlockVideo
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 SlackBlockVideo
impl RefUnwindSafe for SlackBlockVideo
impl Send for SlackBlockVideo
impl Sync for SlackBlockVideo
impl Unpin for SlackBlockVideo
impl UnwindSafe for SlackBlockVideo
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