Enum crowdstrike_cloudproto::services::lfo::LfoError
source · pub enum LfoError {
NotFound,
InvalidRequest,
ServerError(String),
BadReplyKind(u8),
ReplyParseError {
reason: String,
raw_payload: Bytes,
},
InvalidFinalSize {
expected: usize,
actual: usize,
},
InvalidHash {
expected: [u8; 32],
actual: [u8; 32],
},
CloudProto(CloudProtoError),
}Variants§
NotFound
InvalidRequest
ServerError(String)
BadReplyKind(u8)
ReplyParseError
InvalidFinalSize
InvalidHash
CloudProto(CloudProtoError)
Trait Implementations§
source§impl Error for LfoError
impl Error for LfoError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<CloudProtoError> for LfoError
impl From<CloudProtoError> for LfoError
source§fn from(source: CloudProtoError) -> Self
fn from(source: CloudProtoError) -> Self
Converts to this type from the input type.