pub struct LinearConfig {
pub endpoint: String,
pub api_key: String,
pub project_slug: String,
pub active_states: Vec<String>,
pub terminal_states: Vec<String>,
}Expand description
Configuration for Linear tracker.
Fields§
§endpoint: StringGraphQL endpoint URL (typically https://api.linear.app/graphql).
api_key: StringAPI key for authentication (LINEAR_API_KEY).
project_slug: StringProject slug identifier (e.g., “ABC” for project ABC).
active_states: Vec<String>Active states that trigger agent dispatch.
terminal_states: Vec<String>Terminal states that trigger workspace cleanup.
Trait Implementations§
Source§impl Clone for LinearConfig
impl Clone for LinearConfig
Source§fn clone(&self) -> LinearConfig
fn clone(&self) -> LinearConfig
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 moreAuto Trait Implementations§
impl Freeze for LinearConfig
impl RefUnwindSafe for LinearConfig
impl Send for LinearConfig
impl Sync for LinearConfig
impl Unpin for LinearConfig
impl UnsafeUnpin for LinearConfig
impl UnwindSafe for LinearConfig
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