pub struct AuthResponseErr {
pub error: String,
pub trace_ids: HashSet<Uuid>,
}
Expand description
Отказ в авторизации
Fields§
§error: String
Причина отказа
trace_ids: HashSet<Uuid>
Идентификаторы компонентов, через которые сообщение было получено
Trait Implementations§
Source§impl Clone for AuthResponseErr
impl Clone for AuthResponseErr
Source§fn clone(&self) -> AuthResponseErr
fn clone(&self) -> AuthResponseErr
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthResponseErr
impl Debug for AuthResponseErr
Source§impl<'de> Deserialize<'de> for AuthResponseErr
impl<'de> Deserialize<'de> for AuthResponseErr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthResponseErr
impl PartialEq for AuthResponseErr
Source§impl Serialize for AuthResponseErr
impl Serialize for AuthResponseErr
impl StructuralPartialEq for AuthResponseErr
Auto Trait Implementations§
impl Freeze for AuthResponseErr
impl RefUnwindSafe for AuthResponseErr
impl Send for AuthResponseErr
impl Sync for AuthResponseErr
impl Unpin for AuthResponseErr
impl UnwindSafe for AuthResponseErr
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