pub struct SentrySettingsInput {
pub organization_slug: Option<String>,
pub organization_id: Option<String>,
pub resolving_completes_issues: Option<bool>,
pub unresolving_reopens_issues: Option<bool>,
}Fields§
§organization_slug: Option<String>The slug of the Sentry organization being connected.
organization_id: Option<String>The ID of the Sentry organization being connected.
resolving_completes_issues: Option<bool>Whether Sentry issues resolving completes Linear issues.
unresolving_reopens_issues: Option<bool>Whether Sentry issues unresolving reopens Linear issues.
Trait Implementations§
Source§impl Clone for SentrySettingsInput
impl Clone for SentrySettingsInput
Source§fn clone(&self) -> SentrySettingsInput
fn clone(&self) -> SentrySettingsInput
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 SentrySettingsInput
impl Debug for SentrySettingsInput
Source§impl Default for SentrySettingsInput
impl Default for SentrySettingsInput
Source§fn default() -> SentrySettingsInput
fn default() -> SentrySettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SentrySettingsInput
impl<'de> Deserialize<'de> for SentrySettingsInput
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 SentrySettingsInput
impl RefUnwindSafe for SentrySettingsInput
impl Send for SentrySettingsInput
impl Sync for SentrySettingsInput
impl Unpin for SentrySettingsInput
impl UnwindSafe for SentrySettingsInput
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