pub struct ActorEnvVarCollectionClient { /* private fields */ }Expand description
Client for listing and creating environment variables of an Actor version.
Implementations§
Source§impl ActorEnvVarCollectionClient
impl ActorEnvVarCollectionClient
Sourcepub async fn list(&self) -> ApifyClientResult<PaginationList<ActorEnvVar>>
pub async fn list(&self) -> ApifyClientResult<PaginationList<ActorEnvVar>>
Lists the environment variables of the Actor version.
Sourcepub async fn create(
&self,
env_var: &ActorEnvVar,
) -> ApifyClientResult<ActorEnvVar>
pub async fn create( &self, env_var: &ActorEnvVar, ) -> ApifyClientResult<ActorEnvVar>
Creates a new environment variable.
Trait Implementations§
Source§impl Clone for ActorEnvVarCollectionClient
impl Clone for ActorEnvVarCollectionClient
Source§fn clone(&self) -> ActorEnvVarCollectionClient
fn clone(&self) -> ActorEnvVarCollectionClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 !RefUnwindSafe for ActorEnvVarCollectionClient
impl !UnwindSafe for ActorEnvVarCollectionClient
impl Freeze for ActorEnvVarCollectionClient
impl Send for ActorEnvVarCollectionClient
impl Sync for ActorEnvVarCollectionClient
impl Unpin for ActorEnvVarCollectionClient
impl UnsafeUnpin for ActorEnvVarCollectionClient
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