Struct CreateClientSpec
pub struct CreateClientSpec<'a> {
pub client_type: ClientType,
pub name: Cow<'a, str>,
}Expand description
Specification for creating a client alongside a keyset.
Fields§
§client_type: ClientType§name: Cow<'a, str>A human-readable name for the client.
Trait Implementations§
Source§impl<'a> Debug for CreateClientSpec<'a>
impl<'a> Debug for CreateClientSpec<'a>
Source§impl<'de, 'a> Deserialize<'de> for CreateClientSpec<'a>
impl<'de, 'a> Deserialize<'de> for CreateClientSpec<'a>
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateClientSpec<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateClientSpec<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> Serialize for CreateClientSpec<'a>
impl<'a> Serialize for CreateClientSpec<'a>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl<'a> ToSchema for CreateClientSpec<'a>
impl<'a> ToSchema for CreateClientSpec<'a>
Source§impl<'a> Validate for CreateClientSpec<'a>
impl<'a> Validate for CreateClientSpec<'a>
Source§impl<'v_a, 'a> ValidateArgs<'v_a> for CreateClientSpec<'a>
impl<'v_a, 'a> ValidateArgs<'v_a> for CreateClientSpec<'a>
type Args = ()
fn validate_with_args( &self, args: <CreateClientSpec<'a> as ValidateArgs<'v_a>>::Args, ) -> Result<(), ValidationErrors>
Auto Trait Implementations§
impl<'a> Freeze for CreateClientSpec<'a>
impl<'a> RefUnwindSafe for CreateClientSpec<'a>
impl<'a> Send for CreateClientSpec<'a>
impl<'a> Sync for CreateClientSpec<'a>
impl<'a> Unpin for CreateClientSpec<'a>
impl<'a> UnsafeUnpin for CreateClientSpec<'a>
impl<'a> UnwindSafe for CreateClientSpec<'a>
Blanket Implementations§
impl<T> AuthStrategyBounds for T
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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> 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