pub struct StageParamsObject {
pub url: Option<String>,
pub encryption: KeyValueOptions,
pub endpoint: Option<String>,
pub storage_integration: Option<String>,
pub credentials: KeyValueOptions,
}Expand description
Parameters for a named stage object used in data loading/unloading.
Fields§
§url: Option<String>Optional URL for the stage.
encryption: KeyValueOptionsEncryption-related key/value options.
endpoint: Option<String>Optional endpoint string.
storage_integration: Option<String>Optional storage integration identifier.
credentials: KeyValueOptionsCredentials for accessing the stage.
Trait Implementations§
Source§impl Clone for StageParamsObject
impl Clone for StageParamsObject
Source§fn clone(&self) -> StageParamsObject
fn clone(&self) -> StageParamsObject
Returns a duplicate 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 StageParamsObject
impl Debug for StageParamsObject
Source§impl Display for StageParamsObject
impl Display for StageParamsObject
Source§impl Hash for StageParamsObject
impl Hash for StageParamsObject
Source§impl Ord for StageParamsObject
impl Ord for StageParamsObject
Source§fn cmp(&self, other: &StageParamsObject) -> Ordering
fn cmp(&self, other: &StageParamsObject) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StageParamsObject
impl PartialEq for StageParamsObject
Source§impl PartialOrd for StageParamsObject
impl PartialOrd for StageParamsObject
Source§impl Visit for StageParamsObject
impl Visit for StageParamsObject
Source§impl VisitMut for StageParamsObject
impl VisitMut for StageParamsObject
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for StageParamsObject
impl StructuralPartialEq for StageParamsObject
Auto Trait Implementations§
impl Freeze for StageParamsObject
impl RefUnwindSafe for StageParamsObject
impl Send for StageParamsObject
impl Sync for StageParamsObject
impl Unpin for StageParamsObject
impl UnsafeUnpin for StageParamsObject
impl UnwindSafe for StageParamsObject
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