pub struct CreateExternalLocationBuilder { /* private fields */ }Expand description
Builder for creating a external location
Implementations§
Source§impl CreateExternalLocationBuilder
impl CreateExternalLocationBuilder
Sourcepub fn with_read_only(self, read_only: impl Into<Option<bool>>) -> Self
pub fn with_read_only(self, read_only: impl Into<Option<bool>>) -> Self
Indicates whether the external location is read-only.
Sourcepub fn with_comment(self, comment: impl Into<Option<String>>) -> Self
pub fn with_comment(self, comment: impl Into<Option<String>>) -> Self
User-provided free-form text description.
Sourcepub fn with_skip_validation(
self,
skip_validation: impl Into<Option<bool>>,
) -> Self
pub fn with_skip_validation( self, skip_validation: impl Into<Option<bool>>, ) -> Self
Skips validation of the storage credential associated with the external location.
Trait Implementations§
Source§impl IntoFuture for CreateExternalLocationBuilder
impl IntoFuture for CreateExternalLocationBuilder
Source§type Output = Result<ExternalLocation, Error>
type Output = Result<ExternalLocation, Error>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <CreateExternalLocationBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <CreateExternalLocationBuilder as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for CreateExternalLocationBuilder
impl !UnwindSafe for CreateExternalLocationBuilder
impl Freeze for CreateExternalLocationBuilder
impl Send for CreateExternalLocationBuilder
impl Sync for CreateExternalLocationBuilder
impl Unpin for CreateExternalLocationBuilder
impl UnsafeUnpin for CreateExternalLocationBuilder
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