pub enum FleetInstallInputError {
Show 18 variants
Missing {
path: PathBuf,
},
NotRegular {
path: PathBuf,
},
TooLarge {
maximum_bytes: usize,
actual_bytes: usize,
},
UnsupportedSchemaVersion {
actual: u32,
},
Decode {
path: PathBuf,
source: Error,
},
InvalidSubnet {
field: String,
value: String,
reason: String,
},
InvalidSubnetProfile {
profile: String,
},
TrustedMetadataRequired {
selector: String,
},
SubnetNotFound {
selector: String,
},
AmbiguousSubnetSelector {
selector: String,
matches: usize,
},
IneligibleSubnet {
subnet: SubnetId,
kind: String,
},
FundingMismatch {
owner: String,
subnet: SubnetId,
kind: String,
expected: &'static str,
},
NonPublicFunding {
owner: String,
},
NonPositiveCreationFunding {
owner: String,
},
Io {
path: PathBuf,
source: Error,
},
IcpConfig(IcpConfigError),
Clock(SystemTimeError),
SubnetCatalog(SubnetCatalogHostError),
}Expand description
FleetInstallInputError
Typed rejection while loading or resolving one operator input document.
Variants§
Missing
NotRegular
TooLarge
UnsupportedSchemaVersion
Decode
InvalidSubnet
InvalidSubnetProfile
TrustedMetadataRequired
SubnetNotFound
AmbiguousSubnetSelector
IneligibleSubnet
FundingMismatch
NonPublicFunding
NonPositiveCreationFunding
Io
IcpConfig(IcpConfigError)
Clock(SystemTimeError)
SubnetCatalog(SubnetCatalogHostError)
Trait Implementations§
Source§impl Debug for FleetInstallInputError
impl Debug for FleetInstallInputError
Source§impl Display for FleetInstallInputError
impl Display for FleetInstallInputError
Source§impl Error for FleetInstallInputError
impl Error for FleetInstallInputError
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 From<IcpConfigError> for FleetInstallInputError
impl From<IcpConfigError> for FleetInstallInputError
Source§fn from(source: IcpConfigError) -> Self
fn from(source: IcpConfigError) -> Self
Converts to this type from the input type.
Source§impl From<SubnetCatalogHostError> for FleetInstallInputError
impl From<SubnetCatalogHostError> for FleetInstallInputError
Source§fn from(source: SubnetCatalogHostError) -> Self
fn from(source: SubnetCatalogHostError) -> Self
Converts to this type from the input type.
Source§impl From<SystemTimeError> for FleetInstallInputError
impl From<SystemTimeError> for FleetInstallInputError
Source§fn from(source: SystemTimeError) -> Self
fn from(source: SystemTimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for FleetInstallInputError
impl !UnwindSafe for FleetInstallInputError
impl Freeze for FleetInstallInputError
impl Send for FleetInstallInputError
impl Sync for FleetInstallInputError
impl Unpin for FleetInstallInputError
impl UnsafeUnpin for FleetInstallInputError
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