pub struct EndpointNameTooLong {
pub len: usize,
pub max: usize,
pub limit_label: &'static str,
}Expand description
A derived endpoint name that does not fit this host’s budget.
Fields§
§len: usizeLength of the name that was derived.
max: usizeLargest length that would have been accepted.
limit_label: &'static strOperator-facing name of the limit that rejected it.
Trait Implementations§
Source§impl Clone for EndpointNameTooLong
impl Clone for EndpointNameTooLong
Source§fn clone(&self) -> EndpointNameTooLong
fn clone(&self) -> EndpointNameTooLong
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 EndpointNameTooLong
Source§impl Debug for EndpointNameTooLong
impl Debug for EndpointNameTooLong
impl Eq for EndpointNameTooLong
Source§impl PartialEq for EndpointNameTooLong
impl PartialEq for EndpointNameTooLong
impl StructuralPartialEq for EndpointNameTooLong
Auto Trait Implementations§
impl Freeze for EndpointNameTooLong
impl RefUnwindSafe for EndpointNameTooLong
impl Send for EndpointNameTooLong
impl Sync for EndpointNameTooLong
impl Unpin for EndpointNameTooLong
impl UnsafeUnpin for EndpointNameTooLong
impl UnwindSafe for EndpointNameTooLong
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more