pub struct IngressFailure {
pub expected_version: i64,
pub stage: String,
pub code: Option<String>,
pub message: String,
pub rounds_used: Option<u64>,
pub context_tokens: Option<u64>,
pub context_window_tokens: Option<u64>,
}Fields§
§expected_version: i64§stage: String§code: Option<String>§message: String§rounds_used: Option<u64>§context_tokens: Option<u64>§context_window_tokens: Option<u64>Trait Implementations§
Source§impl Clone for IngressFailure
impl Clone for IngressFailure
Source§fn clone(&self) -> IngressFailure
fn clone(&self) -> IngressFailure
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 IngressFailure
impl Debug for IngressFailure
Source§impl<'de> Deserialize<'de> for IngressFailure
impl<'de> Deserialize<'de> for IngressFailure
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
Auto Trait Implementations§
impl Freeze for IngressFailure
impl RefUnwindSafe for IngressFailure
impl Send for IngressFailure
impl Sync for IngressFailure
impl Unpin for IngressFailure
impl UnsafeUnpin for IngressFailure
impl UnwindSafe for IngressFailure
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