pub struct EmbedUri {
pub uri: Option<String>,
}Expand description
URI to be iframed after being populated with query parameters.
This type is not used in any activity, and only used as part of another schema.
Fields§
§uri: Option<String>Required. URI to be iframed after being populated with query parameters. This must be a valid UTF-8 string containing between 1 and 1800 characters.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EmbedUri
impl<'de> Deserialize<'de> for EmbedUri
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
impl Part for EmbedUri
Auto Trait Implementations§
impl Freeze for EmbedUri
impl RefUnwindSafe for EmbedUri
impl Send for EmbedUri
impl Sync for EmbedUri
impl Unpin for EmbedUri
impl UnwindSafe for EmbedUri
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