pub enum SupervisorMaterializeAuthorizeError {
AdmissionRejected(String),
Apply(String),
}Expand description
Typed failure surface for
authorize_supervisor_for_materialized_session.
Variants§
AdmissionRejected(String)
Generated admission rejected the claimed same-authority version advance (peer/key mismatch, stale epoch, or disallowed phase).
Apply(String)
Generated admission, version commit, or private trust publication failed before the refreshed route became usable.
Trait Implementations§
Source§impl Error for SupervisorMaterializeAuthorizeError
impl Error for SupervisorMaterializeAuthorizeError
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 SupervisorMaterializeAuthorizeError
impl RefUnwindSafe for SupervisorMaterializeAuthorizeError
impl Send for SupervisorMaterializeAuthorizeError
impl Sync for SupervisorMaterializeAuthorizeError
impl Unpin for SupervisorMaterializeAuthorizeError
impl UnsafeUnpin for SupervisorMaterializeAuthorizeError
impl UnwindSafe for SupervisorMaterializeAuthorizeError
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