pub struct Level2Config {
pub slots: Vec<String>,
}Expand description
Level 2 — The plugin injects into UI slots.
Fields§
§slots: Vec<String>Which slots the plugin injects into (see UI Slot Reference in the design doc).
Trait Implementations§
Source§impl Clone for Level2Config
impl Clone for Level2Config
Source§fn clone(&self) -> Level2Config
fn clone(&self) -> Level2Config
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 Level2Config
impl Debug for Level2Config
Source§impl<'de> Deserialize<'de> for Level2Config
impl<'de> Deserialize<'de> for Level2Config
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 Level2Config
impl RefUnwindSafe for Level2Config
impl Send for Level2Config
impl Sync for Level2Config
impl Unpin for Level2Config
impl UnsafeUnpin for Level2Config
impl UnwindSafe for Level2Config
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