pub struct StatusCode { /* private fields */ }
Trait Implementations§
Source§impl Debug for StatusCode
impl Debug for StatusCode
Source§impl FromValue for StatusCode
impl FromValue for StatusCode
Source§fn from_value(value: Value) -> Result<Self, ValueError>
fn from_value(value: Value) -> Result<Self, ValueError>
Try to convert to the given type, from the given value.
Source§impl<'a> ReflectValueType for &'a StatusCode
impl<'a> ReflectValueType for &'a StatusCode
Source§type Owned = StatusCode
type Owned = StatusCode
The internal, owned type used for this value.
Source§fn value_type() -> ValueType
fn value_type() -> ValueType
Convert into a value type.
Source§fn value_type_info() -> ValueTypeInfo
fn value_type_info() -> ValueTypeInfo
Access diagnostical information on the value type.
Source§impl<'a> ReflectValueType for &'a mut StatusCode
impl<'a> ReflectValueType for &'a mut StatusCode
Source§type Owned = StatusCode
type Owned = StatusCode
The internal, owned type used for this value.
Source§fn value_type() -> ValueType
fn value_type() -> ValueType
Convert into a value type.
Source§fn value_type_info() -> ValueTypeInfo
fn value_type_info() -> ValueTypeInfo
Access diagnostical information on the value type.
Source§impl ReflectValueType for StatusCode
impl ReflectValueType for StatusCode
Source§type Owned = StatusCode
type Owned = StatusCode
The internal, owned type used for this value.
Source§fn value_type() -> ValueType
fn value_type() -> ValueType
Convert into a value type.
Source§fn value_type_info() -> ValueTypeInfo
fn value_type_info() -> ValueTypeInfo
Access diagnostical information on the value type.
Source§impl ToValue for StatusCode
impl ToValue for StatusCode
Source§impl<'a> UnsafeFromValue for &'a StatusCode
impl<'a> UnsafeFromValue for &'a StatusCode
Source§type Output = *const StatusCode
type Output = *const StatusCode
The output type from the unsafe coercion.
Source§type Guard = RawOwnedRef
type Guard = RawOwnedRef
The raw guard returned. Read more
Source§unsafe fn unsafe_from_value(
value: Value,
) -> Result<(Self::Output, Self::Guard), ValueError>
unsafe fn unsafe_from_value( value: Value, ) -> Result<(Self::Output, Self::Guard), ValueError>
Convert the given reference using unsafe assumptions to a value. Read more
Source§impl<'a> UnsafeFromValue for &'a mut StatusCode
impl<'a> UnsafeFromValue for &'a mut StatusCode
Source§type Output = *mut StatusCode
type Output = *mut StatusCode
The output type from the unsafe coercion.
Source§type Guard = RawOwnedMut
type Guard = RawOwnedMut
The raw guard returned. Read more
Source§unsafe fn unsafe_from_value(
value: Value,
) -> Result<(Self::Output, Self::Guard), ValueError>
unsafe fn unsafe_from_value( value: Value, ) -> Result<(Self::Output, Self::Guard), ValueError>
Convert the given reference using unsafe assumptions to a value. Read more
Auto Trait Implementations§
impl Freeze for StatusCode
impl RefUnwindSafe for StatusCode
impl Send for StatusCode
impl Sync for StatusCode
impl Unpin for StatusCode
impl UnwindSafe for StatusCode
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> UnsafeFromValue for Twhere
T: FromValue,
impl<T> UnsafeFromValue for Twhere
T: FromValue,
Source§unsafe fn unsafe_from_value(
value: Value,
) -> Result<(T, <T as UnsafeFromValue>::Guard), ValueError>
unsafe fn unsafe_from_value( value: Value, ) -> Result<(T, <T as UnsafeFromValue>::Guard), ValueError>
Convert the given reference using unsafe assumptions to a value. Read more