Struct golem_client::project_grant::ProjectGrantLive
source · pub struct ProjectGrantLive {
pub base_url: Url,
pub allow_insecure: bool,
}
Fields§
§base_url: Url
§allow_insecure: bool
Trait Implementations§
source§impl Clone for ProjectGrantLive
impl Clone for ProjectGrantLive
source§fn clone(&self) -> ProjectGrantLive
fn clone(&self) -> ProjectGrantLive
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 ProjectGrantLive
impl Debug for ProjectGrantLive
source§impl ProjectGrant for ProjectGrantLive
impl ProjectGrant for ProjectGrantLive
fn get_project_grants<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, project_id: &'life1 str, authorization: &'life2 str ) -> Pin<Box<dyn Future<Output = Result<Vec<ProjectGrant>, ProjectGrantError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,
fn get_project_grant<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, project_id: &'life1 str, grant_id: &'life2 str, authorization: &'life3 str ) -> Pin<Box<dyn Future<Output = Result<ProjectGrant, ProjectGrantError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,
fn post_project_grant<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, project_id: &'life1 str, field0: ProjectGrantDataRequest, authorization: &'life2 str ) -> Pin<Box<dyn Future<Output = Result<ProjectGrant, ProjectGrantError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,
fn post_project_grant_with_actions<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, project_id: &'life1 str, field0: ProjectGrantDataWithProjectActions, authorization: &'life2 str ) -> Pin<Box<dyn Future<Output = Result<ProjectGrant, ProjectGrantError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,
fn delete_grant<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, project_id: &'life1 str, grant_id: &'life2 str, authorization: &'life3 str ) -> Pin<Box<dyn Future<Output = Result<(), ProjectGrantError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,
Auto Trait Implementations§
impl RefUnwindSafe for ProjectGrantLive
impl Send for ProjectGrantLive
impl Sync for ProjectGrantLive
impl Unpin for ProjectGrantLive
impl UnwindSafe for ProjectGrantLive
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