pub struct GlobalSettingsPayload<G> {
pub settings: G,
}
Expand description
The new global settings.
Fields§
§settings: G
The stored settings for the plugin.
Trait Implementations§
Source§impl<G: Debug> Debug for GlobalSettingsPayload<G>
impl<G: Debug> Debug for GlobalSettingsPayload<G>
Source§impl<'de, G> Deserialize<'de> for GlobalSettingsPayload<G>where
G: Deserialize<'de>,
impl<'de, G> Deserialize<'de> for GlobalSettingsPayload<G>where
G: Deserialize<'de>,
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<G> Freeze for GlobalSettingsPayload<G>where
G: Freeze,
impl<G> RefUnwindSafe for GlobalSettingsPayload<G>where
G: RefUnwindSafe,
impl<G> Send for GlobalSettingsPayload<G>where
G: Send,
impl<G> Sync for GlobalSettingsPayload<G>where
G: Sync,
impl<G> Unpin for GlobalSettingsPayload<G>where
G: Unpin,
impl<G> UnwindSafe for GlobalSettingsPayload<G>where
G: UnwindSafe,
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