Struct sea_orm_rocket::figment::Error [−]
pub struct Error {
pub profile: Option<Profile>,
pub metadata: Option<Metadata>,
pub path: Vec<String, Global>,
pub kind: Kind,
// some fields omitted
}Expand description
An error that occured while producing data or extracting a configuration.
Constructing Errors
An Error will generally be constructed indirectly via its implementations
of serde’s de::Error and ser::Error, that is, as a result of
serialization or deserialization errors. When implementing Provider,
however, it may be necessary to construct an Error directly.
Broadly, there are two ways to construct an Error:
-
Via an error message, since
ErrorimplsFrom<String>:use figment::Error; Error::from("whoops, something went wrong!".to_string()); -
Via a
Kind, sinceErrorimplsFrom<Kind>:use figment::{error::{Error, Kind}, value::Value}; let value = Value::serialize(&100).unwrap(); if !value.as_str().is_some() { let kind = Kind::InvalidType(value.to_actual(), "string".into()); let error = Error::from(kind); }
As always, ? can be used to automatically convert into an Error using
the available From implementations:
use std::fs::File;
fn try_read() -> Result<(), figment::Error> {
let x = File::open("/tmp/foo.boo").map_err(|e| e.to_string())?;
Ok(())
}Display
By default, Error uses all of the available information about the error,
including the Metadata, path, and profile to display a message that
resembles the following, where $ is error. for some error: Error:
$kind: `$metadata.interpolate($path)` in $($metadata.sources())*Concretely, such an error may look like:
invalid type: found sequence, expected u16: `staging.port` in TOML file Config.tomlIterator
An Error may contain more than one error. To process all errors, iterate
over an Error:
fn with_error(error: figment::Error) {
for error in error {
println!("error: {}", error);
}
}Fields
profile: Option<Profile>The profile that was selected when the error occured, if any.
metadata: Option<Metadata>The metadata for the provider of the value that errored, if known.
path: Vec<String, Global>The path to the configuration key that errored, if known.
kind: KindThe error kind.
Implementations
impl Error
impl Error
Returns true if the error’s kind is MissingField.
Example
use figment::error::{Error, Kind};
let error = Error::from(Kind::MissingField("path".into()));
assert!(error.missing());Append the string path to the error’s path.
Example
use figment::Error;
let error = Error::from("an error message".to_string())
.with_path("some_path");Returns the number of errors represented by self.
Example
use figment::{Figment, providers::{Format, Toml}};
figment::Jail::expect_with(|jail| {
jail.create_file("Base.toml", r#"
cat = [1
"#)?;
jail.create_file("Release.toml", r#"
cat = "
"#)?;
let figment = Figment::from(Toml::file("Base.toml"))
.merge(Toml::file("Release.toml"));
let error = figment.extract_inner::<String>("cat").unwrap_err();
assert_eq!(error.count(), 2);
Ok(())
});Trait Implementations
Raised when there is general error when deserializing a type. Read more
pub fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error
pub fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error
Raised when a Deserialize receives a type different from what it was
expecting. Read more
pub fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error
pub fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Error
Raised when a Deserialize receives a value of the right type but that
is wrong for some other reason. Read more
pub fn invalid_length(len: usize, exp: &dyn Expected) -> Error
pub fn invalid_length(len: usize, exp: &dyn Expected) -> Error
Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
pub fn unknown_variant(
variant: &str,
expected: &'static [&'static str]
) -> Error
pub fn unknown_variant(
variant: &str,
expected: &'static [&'static str]
) -> Error
Raised when a Deserialize enum type received a variant with an
unrecognized name. Read more
pub fn unknown_field(field: &str, expected: &'static [&'static str]) -> Error
pub fn unknown_field(field: &str, expected: &'static [&'static str]) -> Error
Raised when a Deserialize struct type received a field with an
unrecognized name. Read more
pub fn missing_field(field: &'static str) -> Error
pub fn missing_field(field: &'static str) -> Error
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. Read more
pub fn duplicate_field(field: &'static str) -> Error
pub fn duplicate_field(field: &'static str) -> Error
Raised when a Deserialize struct type received more than one of the
same field. Read more
impl IntoIterator for Error
impl IntoIterator for Error
impl StructuralPartialEq for Error
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
Converts self into a collection.
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
