pub struct ActionOpenPage {
pub type_: String,
pub url: Option<String>,
}Expand description
Action type “open_page” - Opens a specific URL from search results.
Fields§
§type_: StringThe action type.
url: Option<String>The URL opened by the model.
Trait Implementations§
Source§impl Clone for ActionOpenPage
impl Clone for ActionOpenPage
Source§fn clone(&self) -> ActionOpenPage
fn clone(&self) -> ActionOpenPage
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 ActionOpenPage
impl Debug for ActionOpenPage
Source§impl<'de> Deserialize<'de> for ActionOpenPage
impl<'de> Deserialize<'de> for ActionOpenPage
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 ActionOpenPage
impl RefUnwindSafe for ActionOpenPage
impl Send for ActionOpenPage
impl Sync for ActionOpenPage
impl Unpin for ActionOpenPage
impl UnsafeUnpin for ActionOpenPage
impl UnwindSafe for ActionOpenPage
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