pub struct RegistryClient { /* private fields */ }Expand description
API client for the Wasmer registry.
Implementations§
Source§impl RegistryClient
impl RegistryClient
Sourcepub fn new(
endpoint: Url,
token: Option<String>,
user_agent: Option<String>,
) -> Self
pub fn new( endpoint: Url, token: Option<String>, user_agent: Option<String>, ) -> Self
Construct a new registry.
Sourcepub fn from_registry(registry: RegistryLogin) -> Result<Self, Error>
pub fn from_registry(registry: RegistryLogin) -> Result<Self, Error>
Construct a client from a crate::config::RegistryLogin.
Sourcepub fn with_endpoint(self, endpoint: Url) -> Self
pub fn with_endpoint(self, endpoint: Url) -> Self
Set the GraphQL API endpoint.
Sourcepub fn with_token(self, token: String) -> Self
pub fn with_token(self, token: String) -> Self
Set the authentication token.
Trait Implementations§
Source§impl Clone for RegistryClient
impl Clone for RegistryClient
Source§fn clone(&self) -> RegistryClient
fn clone(&self) -> RegistryClient
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 Freeze for RegistryClient
impl !RefUnwindSafe for RegistryClient
impl Send for RegistryClient
impl Sync for RegistryClient
impl Unpin for RegistryClient
impl !UnwindSafe for RegistryClient
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,
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