pub enum CompileError {
ExecPathTooLong {
path: String,
},
FsPathTooLong {
path: String,
},
FsPathInvalidUtf8 {
path: PathBuf,
},
InvalidNetHost {
host: String,
},
}
Expand description
Errors that can occur while compiling a Policy
.
Variants§
ExecPathTooLong
Executable path is longer than supported.
FsPathTooLong
Filesystem path is longer than supported.
FsPathInvalidUtf8
Filesystem path is not valid UTF-8.
InvalidNetHost
Network host entry is malformed.
Trait Implementations§
Source§impl Debug for CompileError
impl Debug for CompileError
Source§impl Display for CompileError
impl Display for CompileError
Source§impl Error for CompileError
impl Error for CompileError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for CompileError
impl RefUnwindSafe for CompileError
impl Send for CompileError
impl Sync for CompileError
impl Unpin for CompileError
impl UnwindSafe for CompileError
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