pub struct JiraConfig {
pub url: String,
pub project_key: String,
pub email: String,
}Fields§
§url: StringJira instance URL
project_key: StringProject key (e.g., “PROJ”)
email: StringUser email (required for Jira auth)
Trait Implementations§
Source§impl Clone for JiraConfig
impl Clone for JiraConfig
Source§fn clone(&self) -> JiraConfig
fn clone(&self) -> JiraConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JiraConfig
impl Debug for JiraConfig
Source§impl<'de> Deserialize<'de> for JiraConfig
impl<'de> Deserialize<'de> for JiraConfig
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 JiraConfig
impl RefUnwindSafe for JiraConfig
impl Send for JiraConfig
impl Sync for JiraConfig
impl Unpin for JiraConfig
impl UnsafeUnpin for JiraConfig
impl UnwindSafe for JiraConfig
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