pub enum KeyStore {
JsonEntries(&'static str),
DshRefs {
path: &'static str,
variable: &'static str,
},
Pi {
dir: &'static str,
},
}Expand description
A CLI’s native credential file, relative to the adapter home.
Variants§
JsonEntries(&'static str)
A JSON object whose entries are stored sign-ins (Grok’s auth.json).
DshRefs
DeepSeek Harness .credentials.yaml, holding refs.<variable>.
Pi
pi’s agent directory: auth.json, plus the SCV-configured
OpenAI-compatible endpoint in models.json and settings.json.
Trait Implementations§
impl Copy for KeyStore
impl Eq for KeyStore
impl StructuralPartialEq for KeyStore
Auto Trait Implementations§
impl Freeze for KeyStore
impl RefUnwindSafe for KeyStore
impl Send for KeyStore
impl Sync for KeyStore
impl Unpin for KeyStore
impl UnsafeUnpin for KeyStore
impl UnwindSafe for KeyStore
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