pub enum DeError {
Show 102 variants
SnappyCrc32 {
expected: u32,
actual: u32,
},
BoolValue(u8),
FixedValue(ValueKind),
BytesValue(ValueKind),
GetUuidFromStringValue(ValueKind),
NameCollision(String),
ResolveDecimalSchema(SchemaKind),
ConvertToUtf8(FromUtf8Error),
Validation,
MemoryAllocation {
desired: usize,
maximum: usize,
},
SignExtend {
requested: usize,
needed: usize,
},
ReadBoolean(Error),
ReadBytes(Error),
ReadString(Error),
ReadDouble(Error),
ReadFloat(Error),
ReadDuration(Error),
ReadFixed(Error, usize),
ConvertStrToUuid(Error),
MapKeyType(ValueKind),
GetUnionVariant {
index: i64,
num_variants: usize,
},
EnumSymbolIndex {
index: usize,
num_variants: usize,
},
GetEnumSymbol,
GetScaleAndPrecision {
scale: usize,
precision: usize,
},
GetScaleWithFixedSize {
size: usize,
precision: usize,
},
GetUuid(ValueKind),
GetDecimalFixedBytes(usize),
ResolveDuration(ValueKind),
ResolveDecimal(ValueKind),
GetField(String),
GetU8(ValueKind),
ComparePrecisionAndSize {
precision: usize,
num_bytes: usize,
},
ConvertLengthToI32(TryFromIntError, usize),
GetDate(ValueKind),
GetTimeMillis(ValueKind),
GetTimeMicros(ValueKind),
GetTimestampMillis(ValueKind),
GetTimestampMicros(ValueKind),
GetNull(ValueKind),
GetBoolean(ValueKind),
GetInt(ValueKind),
GetLong(ValueKind),
GetDouble(ValueKind),
GetFloat(ValueKind),
GetBytes(ValueKind),
GetString(ValueKind),
GetEnum(ValueKind),
CompareFixedSizes {
size: usize,
n: usize,
},
GetStringForFixed(ValueKind),
GetEnumDefault {
symbol: String,
symbols: Vec<String>,
},
GetEnumValue {
index: usize,
nsymbols: usize,
},
GetDecimalMetadataFromJson(&'static str),
FindUnionVariant,
GetArray {
expected: SchemaKind,
other: ValueKind,
},
GetMap {
expected: SchemaKind,
other: ValueKind,
},
GetRecord {
expected: Vec<(String, SchemaKind)>,
other: ValueKind,
},
GetNameField,
GetNameFieldFromRecord,
GetNestedUnion,
GetUnionDuplicate,
GetU64FromJson(Number),
GetI64FromJson(Number),
ConvertU64ToUsize(TryFromIntError, u64),
ConvertI64ToUsize(TryFromIntError, i64),
ConvertI32ToUsize(TryFromIntError, i32),
GetPrecisionOrScaleFromJson(Number),
ParseSchemaJson(Error),
ParseSchemaFromValidJson,
ParsePrimitive(String),
GetDecimalPrecisionFromJson {
key: String,
precision: Value,
},
GetLogicalTypeVariant(Value),
GetLogicalTypeField,
GetLogicalTypeFieldType,
GetComplexType(Value),
GetComplexTypeField,
GetRecordFieldsJson,
GetEnumSymbolsField,
GetEnumSymbols,
GetArrayItemsField,
GetMapValuesField,
GetFixedSizeField,
DeflateCompress(Error),
DeflateCompressFinish(Error),
DeflateDecompress(Error),
ReadHeader(Error),
HeaderMagic,
GetAvroSchemaFromMap,
GetHeaderMetadata,
ReadMarker(Error),
ReadBlockMarker(Error),
ReadIntoBuf(Error),
GetBlockMarker,
IntegerOverflow,
ReadVariableIntegerBytes(Error),
ZagI32(TryFromIntError, i64),
ReadBlock,
SerializeValue(String),
DeserializeValue(String),
WriteBytes(Error),
WriteMarker(Error),
ConvertJsonToString(Error),
ConvertF64ToJson(f64),
}
Variants§
SnappyCrc32
BoolValue(u8)
FixedValue(ValueKind)
BytesValue(ValueKind)
GetUuidFromStringValue(ValueKind)
NameCollision(String)
ResolveDecimalSchema(SchemaKind)
ConvertToUtf8(FromUtf8Error)
Validation
Describes errors happened while validating Avro data.
MemoryAllocation
SignExtend
Describe a specific error happening with decimal representation
ReadBoolean(Error)
ReadBytes(Error)
ReadString(Error)
ReadDouble(Error)
ReadFloat(Error)
ReadDuration(Error)
ReadFixed(Error, usize)
ConvertStrToUuid(Error)
MapKeyType(ValueKind)
GetUnionVariant
EnumSymbolIndex
GetEnumSymbol
GetScaleAndPrecision
GetScaleWithFixedSize
GetUuid(ValueKind)
GetDecimalFixedBytes(usize)
ResolveDuration(ValueKind)
ResolveDecimal(ValueKind)
GetField(String)
GetU8(ValueKind)
ComparePrecisionAndSize
ConvertLengthToI32(TryFromIntError, usize)
GetDate(ValueKind)
GetTimeMillis(ValueKind)
GetTimeMicros(ValueKind)
GetTimestampMillis(ValueKind)
GetTimestampMicros(ValueKind)
GetNull(ValueKind)
GetBoolean(ValueKind)
GetInt(ValueKind)
GetLong(ValueKind)
GetDouble(ValueKind)
GetFloat(ValueKind)
GetBytes(ValueKind)
GetString(ValueKind)
GetEnum(ValueKind)
CompareFixedSizes
GetStringForFixed(ValueKind)
GetEnumDefault
GetEnumValue
GetDecimalMetadataFromJson(&'static str)
FindUnionVariant
GetArray
GetMap
GetRecord
GetNameField
GetNameFieldFromRecord
GetNestedUnion
GetUnionDuplicate
GetU64FromJson(Number)
GetI64FromJson(Number)
ConvertU64ToUsize(TryFromIntError, u64)
ConvertI64ToUsize(TryFromIntError, i64)
ConvertI32ToUsize(TryFromIntError, i32)
GetPrecisionOrScaleFromJson(Number)
ParseSchemaJson(Error)
ParseSchemaFromValidJson
ParsePrimitive(String)
GetDecimalPrecisionFromJson
GetLogicalTypeVariant(Value)
GetLogicalTypeField
GetLogicalTypeFieldType
GetComplexType(Value)
GetComplexTypeField
GetRecordFieldsJson
GetEnumSymbolsField
GetEnumSymbols
GetArrayItemsField
GetMapValuesField
GetFixedSizeField
DeflateCompress(Error)
DeflateCompressFinish(Error)
DeflateDecompress(Error)
ReadHeader(Error)
HeaderMagic
GetAvroSchemaFromMap
GetHeaderMetadata
ReadMarker(Error)
ReadBlockMarker(Error)
ReadIntoBuf(Error)
GetBlockMarker
IntegerOverflow
ReadVariableIntegerBytes(Error)
ZagI32(TryFromIntError, i64)
ReadBlock
SerializeValue(String)
DeserializeValue(String)
WriteBytes(Error)
WriteMarker(Error)
ConvertJsonToString(Error)
ConvertF64ToJson(f64)
Error while converting float to json value
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Error for Error
impl Error for Error
Source§fn custom<T: Display>(msg: T) -> Self
fn custom<T: Display>(msg: T) -> Self
Raised when there is general error when deserializing a type. Read more
Source§fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a
Deserialize
receives a type different from what it was
expecting. Read moreSource§fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a
Deserialize
receives a value of the right type but that
is wrong for some other reason. Read moreSource§fn invalid_length(len: usize, exp: &dyn Expected) -> Self
fn invalid_length(len: usize, exp: &dyn Expected) -> Self
Raised when deserializing a sequence or map and the input data contains
too many or too few elements. Read more
Source§fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
Raised when a
Deserialize
enum type received a variant with an
unrecognized name.Source§fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self
Raised when a
Deserialize
struct type received a field with an
unrecognized name.Source§fn missing_field(field: &'static str) -> Self
fn missing_field(field: &'static str) -> Self
Raised when a
Deserialize
struct type expected to receive a required
field with a particular name but that field was not present in the
input.Source§fn duplicate_field(field: &'static str) -> Self
fn duplicate_field(field: &'static str) -> Self
Raised when a
Deserialize
struct type received more than one of the
same field.Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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