pub enum OmittedBinaryOmittedReason {
TooLarge,
AssetUnavailable,
Unknown,
}Expand description
Why the binary data is absent: it exceeded the inline size limit, or its asset was unavailable
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
TooLarge
Bytes exceeded the session’s inline size limit.
The referenced binary asset could not be found (e.g. a truncated log).
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for OmittedBinaryOmittedReason
impl Clone for OmittedBinaryOmittedReason
Source§fn clone(&self) -> OmittedBinaryOmittedReason
fn clone(&self) -> OmittedBinaryOmittedReason
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 OmittedBinaryOmittedReason
impl Debug for OmittedBinaryOmittedReason
Source§impl Default for OmittedBinaryOmittedReason
impl Default for OmittedBinaryOmittedReason
Source§fn default() -> OmittedBinaryOmittedReason
fn default() -> OmittedBinaryOmittedReason
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OmittedBinaryOmittedReason
impl<'de> Deserialize<'de> for OmittedBinaryOmittedReason
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 Eq for OmittedBinaryOmittedReason
Source§impl PartialEq for OmittedBinaryOmittedReason
impl PartialEq for OmittedBinaryOmittedReason
Source§fn eq(&self, other: &OmittedBinaryOmittedReason) -> bool
fn eq(&self, other: &OmittedBinaryOmittedReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OmittedBinaryOmittedReason
Auto Trait Implementations§
impl Freeze for OmittedBinaryOmittedReason
impl RefUnwindSafe for OmittedBinaryOmittedReason
impl Send for OmittedBinaryOmittedReason
impl Sync for OmittedBinaryOmittedReason
impl Unpin for OmittedBinaryOmittedReason
impl UnsafeUnpin for OmittedBinaryOmittedReason
impl UnwindSafe for OmittedBinaryOmittedReason
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