pub enum CredentialControlOperation {
Usage,
ListRateLimitResetCredits,
ConsumeRateLimitResetCredit {
idempotency_key: String,
},
Account,
Profile,
Settings,
ListTasks {
query: Option<String>,
},
GetTask {
task_id: String,
},
ListSiblingTurns {
task_id: String,
turn_id: String,
},
CreateTask {
body: Value,
},
}Variants§
Usage
ListRateLimitResetCredits
ConsumeRateLimitResetCredit
Account
Profile
Settings
ListTasks
GetTask
ListSiblingTurns
CreateTask
Implementations§
Trait Implementations§
Source§impl Clone for CredentialControlOperation
impl Clone for CredentialControlOperation
Source§fn clone(&self) -> CredentialControlOperation
fn clone(&self) -> CredentialControlOperation
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 CredentialControlOperation
impl Debug for CredentialControlOperation
impl Eq for CredentialControlOperation
impl StructuralPartialEq for CredentialControlOperation
Auto Trait Implementations§
impl Freeze for CredentialControlOperation
impl RefUnwindSafe for CredentialControlOperation
impl Send for CredentialControlOperation
impl Sync for CredentialControlOperation
impl Unpin for CredentialControlOperation
impl UnsafeUnpin for CredentialControlOperation
impl UnwindSafe for CredentialControlOperation
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