pub struct LiveTextMenu {
pub title: String,
pub items: Vec<LiveTextMenuItem>,
}Fields§
§title: String§items: Vec<LiveTextMenuItem>Trait Implementations§
Source§impl Clone for LiveTextMenu
impl Clone for LiveTextMenu
Source§fn clone(&self) -> LiveTextMenu
fn clone(&self) -> LiveTextMenu
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LiveTextMenu
impl Debug for LiveTextMenu
Source§impl<'de> Deserialize<'de> for LiveTextMenu
impl<'de> Deserialize<'de> for LiveTextMenu
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
Source§impl PartialEq for LiveTextMenu
impl PartialEq for LiveTextMenu
Source§fn eq(&self, other: &LiveTextMenu) -> bool
fn eq(&self, other: &LiveTextMenu) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LiveTextMenu
impl Serialize for LiveTextMenu
impl Eq for LiveTextMenu
impl StructuralPartialEq for LiveTextMenu
Auto Trait Implementations§
impl Freeze for LiveTextMenu
impl RefUnwindSafe for LiveTextMenu
impl Send for LiveTextMenu
impl Sync for LiveTextMenu
impl Unpin for LiveTextMenu
impl UnsafeUnpin for LiveTextMenu
impl UnwindSafe for LiveTextMenu
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