pub struct CustomViewSuggestionPayload {
pub name: Option<String>,
pub description: Option<String>,
pub icon: Option<String>,
}Fields§
§name: Option<String>The suggested view name.
description: Option<String>The suggested view description.
icon: Option<String>The suggested view icon.
Trait Implementations§
Source§impl Clone for CustomViewSuggestionPayload
impl Clone for CustomViewSuggestionPayload
Source§fn clone(&self) -> CustomViewSuggestionPayload
fn clone(&self) -> CustomViewSuggestionPayload
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 CustomViewSuggestionPayload
impl Debug for CustomViewSuggestionPayload
Source§impl Default for CustomViewSuggestionPayload
impl Default for CustomViewSuggestionPayload
Source§fn default() -> CustomViewSuggestionPayload
fn default() -> CustomViewSuggestionPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomViewSuggestionPayloadwhere
CustomViewSuggestionPayload: Default,
impl<'de> Deserialize<'de> for CustomViewSuggestionPayloadwhere
CustomViewSuggestionPayload: Default,
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 CustomViewSuggestionPayload
impl RefUnwindSafe for CustomViewSuggestionPayload
impl Send for CustomViewSuggestionPayload
impl Sync for CustomViewSuggestionPayload
impl Unpin for CustomViewSuggestionPayload
impl UnwindSafe for CustomViewSuggestionPayload
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