pub struct CustomView {Show 16 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub description: Option<String>,
pub icon: Option<String>,
pub color: Option<String>,
pub filters: Option<Value>,
pub filter_data: Option<Value>,
pub project_filter_data: Option<Value>,
pub initiative_filter_data: Option<Value>,
pub feed_item_filter_data: Option<Value>,
pub shared: Option<bool>,
pub slug_id: Option<String>,
pub model_name: Option<String>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§name: Option<String>§description: Option<String>§icon: Option<String>§color: Option<String>§filters: Option<Value>§filter_data: Option<Value>§project_filter_data: Option<Value>§initiative_filter_data: Option<Value>§feed_item_filter_data: Option<Value>§slug_id: Option<String>§model_name: Option<String>Trait Implementations§
Source§impl Clone for CustomView
impl Clone for CustomView
Source§fn clone(&self) -> CustomView
fn clone(&self) -> CustomView
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 CustomView
impl Debug for CustomView
Source§impl Default for CustomView
impl Default for CustomView
Source§fn default() -> CustomView
fn default() -> CustomView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomViewwhere
CustomView: Default,
impl<'de> Deserialize<'de> for CustomViewwhere
CustomView: 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 CustomView
impl RefUnwindSafe for CustomView
impl Send for CustomView
impl Sync for CustomView
impl Unpin for CustomView
impl UnwindSafe for CustomView
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