pub(crate) struct SchemaTypes {Show 14 fields
pub(crate) client_settings: ClientSettings,
pub(crate) input_command: Command,
pub(crate) api_key_login: Response<ApiKeyLoginResponse>,
pub(crate) password_login: Response<PasswordLoginResponse>,
pub(crate) login_access_token: Response<AccessTokenLoginResponse>,
pub(crate) secret_identifiers: Response<SecretIdentifiersResponse>,
pub(crate) secret: Response<SecretResponse>,
pub(crate) secrets: Response<SecretsResponse>,
pub(crate) secrets_delete: Response<SecretsDeleteResponse>,
pub(crate) secrets_sync: Response<SecretsSyncResponse>,
pub(crate) project: Response<ProjectResponse>,
pub(crate) projects: Response<ProjectsResponse>,
pub(crate) projects_delete: Response<ProjectsDeleteResponse>,
pub(crate) password: Response<String>,
}
Fields§
§client_settings: ClientSettings
§input_command: Command
§api_key_login: Response<ApiKeyLoginResponse>
§password_login: Response<PasswordLoginResponse>
§login_access_token: Response<AccessTokenLoginResponse>
§secret_identifiers: Response<SecretIdentifiersResponse>
§secret: Response<SecretResponse>
§secrets: Response<SecretsResponse>
§secrets_delete: Response<SecretsDeleteResponse>
§secrets_sync: Response<SecretsSyncResponse>
§project: Response<ProjectResponse>
§projects: Response<ProjectsResponse>
§projects_delete: Response<ProjectsDeleteResponse>
§password: Response<String>
Trait Implementations§
Source§impl JsonSchema for SchemaTypes
impl JsonSchema for SchemaTypes
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn 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 moreAuto Trait Implementations§
impl Freeze for SchemaTypes
impl RefUnwindSafe for SchemaTypes
impl Send for SchemaTypes
impl Sync for SchemaTypes
impl Unpin for SchemaTypes
impl UnwindSafe for SchemaTypes
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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