pub struct SyncApiClient { /* private fields */ }Implementations§
Source§impl SyncApiClient
impl SyncApiClient
pub fn new(api_url: &str, token: &str) -> Self
pub fn with_direct_sync( self, hostname: Option<String>, sync_token: Option<String>, ) -> Self
pub async fn upload_files( &self, tenant_id: &str, data: Vec<u8>, ) -> SyncResult<()>
pub async fn download_files(&self, tenant_id: &str) -> SyncResult<Vec<u8>>
pub async fn get_registry_token( &self, tenant_id: &str, ) -> SyncResult<RegistryToken>
pub async fn deploy( &self, tenant_id: &str, image: &str, ) -> SyncResult<DeployResponse>
pub async fn get_tenant_app_id(&self, tenant_id: &str) -> SyncResult<String>
pub async fn get_database_url(&self, tenant_id: &str) -> SyncResult<String>
Trait Implementations§
Source§impl Clone for SyncApiClient
impl Clone for SyncApiClient
Source§fn clone(&self) -> SyncApiClient
fn clone(&self) -> SyncApiClient
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 SyncApiClient
impl !RefUnwindSafe for SyncApiClient
impl Send for SyncApiClient
impl Sync for SyncApiClient
impl Unpin for SyncApiClient
impl UnsafeUnpin for SyncApiClient
impl !UnwindSafe for SyncApiClient
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