#[non_exhaustive]pub struct CustomerArtifactPathsBuilder { /* private fields */ }Expand description
A builder for CustomerArtifactPaths.
Implementations§
source§impl CustomerArtifactPathsBuilder
impl CustomerArtifactPathsBuilder
sourcepub fn ios_paths(self, input: impl Into<String>) -> Self
pub fn ios_paths(self, input: impl Into<String>) -> Self
Appends an item to ios_paths.
To override the contents of this collection use set_ios_paths.
Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn set_ios_paths(self, input: Option<Vec<String>>) -> Self
pub fn set_ios_paths(self, input: Option<Vec<String>>) -> Self
Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn get_ios_paths(&self) -> &Option<Vec<String>>
pub fn get_ios_paths(&self) -> &Option<Vec<String>>
Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn android_paths(self, input: impl Into<String>) -> Self
pub fn android_paths(self, input: impl Into<String>) -> Self
Appends an item to android_paths.
To override the contents of this collection use set_android_paths.
Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn set_android_paths(self, input: Option<Vec<String>>) -> Self
pub fn set_android_paths(self, input: Option<Vec<String>>) -> Self
Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn get_android_paths(&self) -> &Option<Vec<String>>
pub fn get_android_paths(&self) -> &Option<Vec<String>>
Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.
sourcepub fn device_host_paths(self, input: impl Into<String>) -> Self
pub fn device_host_paths(self, input: impl Into<String>) -> Self
Appends an item to device_host_paths.
To override the contents of this collection use set_device_host_paths.
Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.
sourcepub fn set_device_host_paths(self, input: Option<Vec<String>>) -> Self
pub fn set_device_host_paths(self, input: Option<Vec<String>>) -> Self
Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.
sourcepub fn get_device_host_paths(&self) -> &Option<Vec<String>>
pub fn get_device_host_paths(&self) -> &Option<Vec<String>>
Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.
sourcepub fn build(self) -> CustomerArtifactPaths
pub fn build(self) -> CustomerArtifactPaths
Consumes the builder and constructs a CustomerArtifactPaths.
Trait Implementations§
source§impl Clone for CustomerArtifactPathsBuilder
impl Clone for CustomerArtifactPathsBuilder
source§fn clone(&self) -> CustomerArtifactPathsBuilder
fn clone(&self) -> CustomerArtifactPathsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CustomerArtifactPathsBuilder
impl Debug for CustomerArtifactPathsBuilder
source§impl Default for CustomerArtifactPathsBuilder
impl Default for CustomerArtifactPathsBuilder
source§fn default() -> CustomerArtifactPathsBuilder
fn default() -> CustomerArtifactPathsBuilder
source§impl PartialEq for CustomerArtifactPathsBuilder
impl PartialEq for CustomerArtifactPathsBuilder
source§fn eq(&self, other: &CustomerArtifactPathsBuilder) -> bool
fn eq(&self, other: &CustomerArtifactPathsBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomerArtifactPathsBuilder
Auto Trait Implementations§
impl Freeze for CustomerArtifactPathsBuilder
impl RefUnwindSafe for CustomerArtifactPathsBuilder
impl Send for CustomerArtifactPathsBuilder
impl Sync for CustomerArtifactPathsBuilder
impl Unpin for CustomerArtifactPathsBuilder
impl UnwindSafe for CustomerArtifactPathsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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