pub struct ZBFile { /* private fields */ }Implementations§
Source§impl ZBFile
impl ZBFile
pub fn from_path(path_to_file: String) -> ZBFile
pub fn from_content(content: Vec<u8>) -> ZBFile
pub fn generate_multipart(&self) -> ZBResult<Form>
pub fn set_has_header_row(self, has_header_row: bool) -> Self
pub fn set_remove_duplicate(self, remove_duplicate: bool) -> Self
pub fn set_email_address_column(self, email_address_column: u32) -> Self
pub fn set_first_name_column(self, first_name_column: Option<u32>) -> Self
pub fn set_last_name_column(self, last_name_column: Option<u32>) -> Self
pub fn set_gender_column(self, gender_column: Option<u32>) -> Self
pub fn set_ip_address_column(self, ip_address_column: Option<u32>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZBFile
impl RefUnwindSafe for ZBFile
impl Send for ZBFile
impl Sync for ZBFile
impl Unpin for ZBFile
impl UnwindSafe for ZBFile
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