pub enum BuildServerError {
MissingTlsPolicy,
MissingAuthenticationPolicy,
InvalidProtocolLimits,
}Expand description
Deterministic failures while constructing a reusable server component.
Variants§
MissingTlsPolicy
No TLS posture was selected.
MissingAuthenticationPolicy
No authentication posture was selected.
InvalidProtocolLimits
A protocol limit cannot support server-role establishment.
Trait Implementations§
Source§impl Clone for BuildServerError
impl Clone for BuildServerError
Source§fn clone(&self) -> BuildServerError
fn clone(&self) -> BuildServerError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BuildServerError
Source§impl Debug for BuildServerError
impl Debug for BuildServerError
Source§impl Display for BuildServerError
impl Display for BuildServerError
impl Eq for BuildServerError
Source§impl Error for BuildServerError
impl Error for BuildServerError
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()
Source§impl PartialEq for BuildServerError
impl PartialEq for BuildServerError
impl StructuralPartialEq for BuildServerError
Auto Trait Implementations§
impl Freeze for BuildServerError
impl RefUnwindSafe for BuildServerError
impl Send for BuildServerError
impl Sync for BuildServerError
impl Unpin for BuildServerError
impl UnsafeUnpin for BuildServerError
impl UnwindSafe for BuildServerError
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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