pub trait Auth: Send + Sync {
// Required methods
fn get_auth_header(&self) -> Result<String, ServiceError>;
fn is_configured(&self) -> bool;
}Expand description
Authentication trait for registry access
Required Methods§
Sourcefn get_auth_header(&self) -> Result<String, ServiceError>
fn get_auth_header(&self) -> Result<String, ServiceError>
Get authentication header value
Sourcefn is_configured(&self) -> bool
fn is_configured(&self) -> bool
Check if authentication is configured