Struct golem_client::project::ProjectLive
source · pub struct ProjectLive {
pub base_url: Url,
pub allow_insecure: bool,
}
Fields§
§base_url: Url
§allow_insecure: bool
Trait Implementations§
source§impl Clone for ProjectLive
impl Clone for ProjectLive
source§fn clone(&self) -> ProjectLive
fn clone(&self) -> ProjectLive
Returns a copy 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 moresource§impl Debug for ProjectLive
impl Debug for ProjectLive
source§impl Project for ProjectLive
impl Project for ProjectLive
fn get_default_project<'life0, 'life1, 'async_trait>(
&'life0 self,
authorization: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_projects<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_name: Option<&'life1 str>,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<Vec<Project>, ProjectError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn post_project<'life0, 'life1, 'async_trait>(
&'life0 self,
field0: ProjectDataRequest,
authorization: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_project<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_id: &'life1 str,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<Project, ProjectError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn delete_project<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_id: &'life1 str,
authorization: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<(), ProjectError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Auto Trait Implementations§
impl RefUnwindSafe for ProjectLive
impl Send for ProjectLive
impl Sync for ProjectLive
impl Unpin for ProjectLive
impl UnwindSafe for ProjectLive
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