pub struct AdoParserContext {
pub org: Option<String>,
pub project: Option<String>,
pub pat: Option<String>,
}Expand description
Optional Azure DevOps enrichment inputs plumbed from CLI flags.
This is Phase 3A scaffolding only: parser wiring + metadata-safe handling. No network calls are performed yet.
Fields§
§org: Option<String>Azure DevOps organization name (optional).
project: Option<String>Azure DevOps project name (optional).
pat: Option<String>Azure DevOps PAT (optional). Never persisted into graph metadata.
Trait Implementations§
Source§impl Clone for AdoParserContext
impl Clone for AdoParserContext
Source§fn clone(&self) -> AdoParserContext
fn clone(&self) -> AdoParserContext
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 AdoParserContext
impl Debug for AdoParserContext
Source§impl Default for AdoParserContext
impl Default for AdoParserContext
Source§fn default() -> AdoParserContext
fn default() -> AdoParserContext
Returns the “default value” for a type. Read more
Source§impl PartialEq for AdoParserContext
impl PartialEq for AdoParserContext
Source§fn eq(&self, other: &AdoParserContext) -> bool
fn eq(&self, other: &AdoParserContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AdoParserContext
impl StructuralPartialEq for AdoParserContext
Auto Trait Implementations§
impl Freeze for AdoParserContext
impl RefUnwindSafe for AdoParserContext
impl Send for AdoParserContext
impl Sync for AdoParserContext
impl Unpin for AdoParserContext
impl UnsafeUnpin for AdoParserContext
impl UnwindSafe for AdoParserContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.