pub struct JoinArgs {
pub left: PathBuf,
pub right: PathBuf,
pub output: Option<PathBuf>,
pub left_key: String,
pub right_key: String,
pub kind: JoinKind,
pub left_schema: Option<PathBuf>,
pub right_schema: Option<PathBuf>,
pub delimiter: Option<u8>,
pub left_encoding: Option<String>,
pub right_encoding: Option<String>,
pub output_encoding: Option<String>,
}Fields§
§left: PathBuf§right: PathBuf§output: Option<PathBuf>§left_key: String§right_key: String§kind: JoinKind§left_schema: Option<PathBuf>§right_schema: Option<PathBuf>§delimiter: Option<u8>§left_encoding: Option<String>§right_encoding: Option<String>§output_encoding: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinArgs
impl RefUnwindSafe for JoinArgs
impl Send for JoinArgs
impl Sync for JoinArgs
impl Unpin for JoinArgs
impl UnwindSafe for JoinArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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