pub struct JiraLinearMappingInput {
pub jira_project_id: String,
pub linear_team_id: String,
pub bidirectional: MaybeUndefined<bool>,
pub default: MaybeUndefined<bool>,
pub legacy_unidirectional: MaybeUndefined<bool>,
}Fields§
§jira_project_id: StringThe Jira id for this project.
linear_team_id: StringThe Linear team id to map to the given project.
bidirectional: MaybeUndefined<bool>Whether the sync for this mapping is bidirectional.
default: MaybeUndefined<bool>Whether this mapping is the default one for issue creation.
legacy_unidirectional: MaybeUndefined<bool>Whether this mapping uses legacy unidirectional sync behavior where no changes sync from Linear to Jira.
Trait Implementations§
Source§impl Clone for JiraLinearMappingInput
impl Clone for JiraLinearMappingInput
Source§fn clone(&self) -> JiraLinearMappingInput
fn clone(&self) -> JiraLinearMappingInput
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 JiraLinearMappingInput
impl Debug for JiraLinearMappingInput
Source§impl Default for JiraLinearMappingInput
impl Default for JiraLinearMappingInput
Source§fn default() -> JiraLinearMappingInput
fn default() -> JiraLinearMappingInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraLinearMappingInput
impl<'de> Deserialize<'de> for JiraLinearMappingInput
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 JiraLinearMappingInput
impl RefUnwindSafe for JiraLinearMappingInput
impl Send for JiraLinearMappingInput
impl Sync for JiraLinearMappingInput
impl Unpin for JiraLinearMappingInput
impl UnsafeUnpin for JiraLinearMappingInput
impl UnwindSafe for JiraLinearMappingInput
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