pub struct GoToAction<'a> {
pub text: &'a str,
pub link: &'a str,
pub description: &'a str,
}Expand description
Gmail Go-To Action for providing actionable content directly in the inbox
Fields§
§text: &'a strButton text
link: &'a strButton link
description: &'a strDescription of the action
Trait Implementations§
Source§impl<'a> Clone for GoToAction<'a>
impl<'a> Clone for GoToAction<'a>
Source§fn clone(&self) -> GoToAction<'a>
fn clone(&self) -> GoToAction<'a>
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<'a> Debug for GoToAction<'a>
impl<'a> Debug for GoToAction<'a>
Auto Trait Implementations§
impl<'a> Freeze for GoToAction<'a>
impl<'a> RefUnwindSafe for GoToAction<'a>
impl<'a> Send for GoToAction<'a>
impl<'a> Sync for GoToAction<'a>
impl<'a> Unpin for GoToAction<'a>
impl<'a> UnwindSafe for GoToAction<'a>
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