pub struct CustomViewUpdateInput {Show 13 fields
pub name: Option<String>,
pub description: Option<String>,
pub icon: Option<String>,
pub color: Option<String>,
pub team_id: Option<String>,
pub project_id: Option<String>,
pub initiative_id: Option<String>,
pub owner_id: Option<String>,
pub filter_data: Option<Box<IssueFilter>>,
pub project_filter_data: Option<Box<ProjectFilter>>,
pub initiative_filter_data: Option<Box<InitiativeFilter>>,
pub feed_item_filter_data: Option<Box<FeedItemFilter>>,
pub shared: Option<bool>,
}Fields§
§name: Option<String>The name of the custom view.
description: Option<String>The description of the custom view.
icon: Option<String>The icon of the custom view.
color: Option<String>The color of the icon of the custom view.
team_id: Option<String>The id of the team associated with the custom view.
project_id: Option<String>Internal The id of the project associated with the custom view.
initiative_id: Option<String>Internal The id of the initiative associated with the custom view.
owner_id: Option<String>The owner of the custom view.
filter_data: Option<Box<IssueFilter>>The filter applied to issues in the custom view.
project_filter_data: Option<Box<ProjectFilter>>The project filter applied to issues in the custom view.
initiative_filter_data: Option<Box<InitiativeFilter>>ALPHA The initiative filter applied to issues in the custom view.
feed_item_filter_data: Option<Box<FeedItemFilter>>The feed item filter applied to issues in the custom view.
Whether the custom view is shared with everyone in the organization.
Trait Implementations§
Source§impl Clone for CustomViewUpdateInput
impl Clone for CustomViewUpdateInput
Source§fn clone(&self) -> CustomViewUpdateInput
fn clone(&self) -> CustomViewUpdateInput
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 CustomViewUpdateInput
impl Debug for CustomViewUpdateInput
Source§impl Default for CustomViewUpdateInput
impl Default for CustomViewUpdateInput
Source§fn default() -> CustomViewUpdateInput
fn default() -> CustomViewUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomViewUpdateInput
impl<'de> Deserialize<'de> for CustomViewUpdateInput
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 CustomViewUpdateInput
impl RefUnwindSafe for CustomViewUpdateInput
impl Send for CustomViewUpdateInput
impl Sync for CustomViewUpdateInput
impl Unpin for CustomViewUpdateInput
impl UnwindSafe for CustomViewUpdateInput
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