pub struct IdentityInputs<'a> {
pub object_name: &'a str,
pub namespace: &'a str,
pub overrides: Option<&'a Identity>,
pub template: Option<&'a IdentityTemplate>,
pub pvc_name: Option<&'a str>,
pub source_path_override: Option<&'a str>,
}Expand description
Inputs to identity resolution. Grouped into a struct so call sites are readable and future inputs (e.g. extra template vars) slot in without churning the signature.
Fields§
§object_name: &'a strThe consumer object’s metadata.name (default username).
namespace: &'a strThe consumer object’s namespace (default hostname, and the Namespace
template var).
overrides: Option<&'a Identity>Explicit overrides from BackupConfig.spec.identity, if any.
template: Option<&'a IdentityTemplate>ClusterRepository.spec.identityDefaults, if the consumer targets one.
pvc_name: Option<&'a str>The PVC name backing sourcePath’s /pvc/<name> default. None for
surfaces without a single PVC (e.g. a maintenance identity); then
sourcePath is left None.
source_path_override: Option<&'a str>An explicit sourcePathOverride (ADR §3.3), which beats the /pvc/<name>
default.
Trait Implementations§
Source§impl<'a> Clone for IdentityInputs<'a>
impl<'a> Clone for IdentityInputs<'a>
Source§fn clone(&self) -> IdentityInputs<'a>
fn clone(&self) -> IdentityInputs<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for IdentityInputs<'a>
impl<'a> RefUnwindSafe for IdentityInputs<'a>
impl<'a> Send for IdentityInputs<'a>
impl<'a> Sync for IdentityInputs<'a>
impl<'a> Unpin for IdentityInputs<'a>
impl<'a> UnsafeUnpin for IdentityInputs<'a>
impl<'a> UnwindSafe for IdentityInputs<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ServiceExt for T
impl<T> ServiceExt for T
§fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
Apply a transformation to the response body. Read more
§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using HTTP status codes. Read more
§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using gRPC headers. Read more