pub struct SetLLMProviderKeyResponse {
pub provider_id: Option<String>,
pub configured: Option<bool>,
pub shared: Option<bool>,
pub updated_at: Option<String>,
}Expand description
SetLLMProviderKeyResponse model.
Fields§
§provider_id: Option<String>§configured: Option<bool>Effective consent flag after the write. Absent when never set. Returned so a client can send back what it read — before ITG-05 no read path exposed it, which is why every rotation cleared it.
updated_at: Option<String>Trait Implementations§
Source§impl Clone for SetLLMProviderKeyResponse
impl Clone for SetLLMProviderKeyResponse
Source§fn clone(&self) -> SetLLMProviderKeyResponse
fn clone(&self) -> SetLLMProviderKeyResponse
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 SetLLMProviderKeyResponse
impl Debug for SetLLMProviderKeyResponse
Source§impl Default for SetLLMProviderKeyResponse
impl Default for SetLLMProviderKeyResponse
Source§fn default() -> SetLLMProviderKeyResponse
fn default() -> SetLLMProviderKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetLLMProviderKeyResponse
impl<'de> Deserialize<'de> for SetLLMProviderKeyResponse
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
impl StructuralPartialEq for SetLLMProviderKeyResponse
Auto Trait Implementations§
impl Freeze for SetLLMProviderKeyResponse
impl RefUnwindSafe for SetLLMProviderKeyResponse
impl Send for SetLLMProviderKeyResponse
impl Sync for SetLLMProviderKeyResponse
impl Unpin for SetLLMProviderKeyResponse
impl UnsafeUnpin for SetLLMProviderKeyResponse
impl UnwindSafe for SetLLMProviderKeyResponse
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