Struct minerva_data::session::NewSession
source · [−]Expand description
DTO representing the data for a new session, to be received by the gRPC session service.
Fields
tenant: String
Tenant of the required session.
login: String
User attempting to log in.
password: String
Plain text password of the user attempting to log in.
Trait Implementations
sourceimpl Clone for NewSession
impl Clone for NewSession
sourcefn clone(&self) -> NewSession
fn clone(&self) -> NewSession
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for NewSession
impl Debug for NewSession
sourceimpl<'de> Deserialize<'de> for NewSession
impl<'de> Deserialize<'de> for NewSession
sourcefn 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
sourceimpl From<NewSession> for Session
impl From<NewSession> for Session
sourcefn from(new: NewSession) -> Self
fn from(new: NewSession) -> Self
Converts to this type from the input type.
sourceimpl From<NewSession> for SessionCreationData
impl From<NewSession> for SessionCreationData
sourcefn from(new: NewSession) -> Self
fn from(new: NewSession) -> Self
Converts to this type from the input type.
sourceimpl From<SessionCreationData> for NewSession
impl From<SessionCreationData> for NewSession
sourcefn from(msg: SessionCreationData) -> Self
fn from(msg: SessionCreationData) -> Self
Converts to this type from the input type.
sourceimpl JsonSchema for NewSession
impl JsonSchema for NewSession
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<NewSession> for NewSession
impl PartialEq<NewSession> for NewSession
sourcefn eq(&self, other: &NewSession) -> bool
fn eq(&self, other: &NewSession) -> bool
impl Eq for NewSession
impl StructuralEq for NewSession
impl StructuralPartialEq for NewSession
Auto Trait Implementations
impl RefUnwindSafe for NewSession
impl Send for NewSession
impl Sync for NewSession
impl Unpin for NewSession
impl UnwindSafe for NewSession
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
Converts
self
into a collection.fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where
F: FnMut(T) -> U,
A: Array<Item = U>,
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request