Enum polars::prelude::CommentPrefix  
source · pub enum CommentPrefix {
    Single(u8),
    Multi(Arc<str>),
}Available on crate feature 
polars-io only.Variants§
Single(u8)
A single byte character that indicates the start of a comment line.
Multi(Arc<str>)
A string that indicates the start of a comment line. This allows for multiple characters to be used as a comment identifier.
Implementations§
source§impl CommentPrefix
 
impl CommentPrefix
sourcepub fn new_single(prefix: u8) -> CommentPrefix
 
pub fn new_single(prefix: u8) -> CommentPrefix
Creates a new CommentPrefix for the Single variant.
sourcepub fn new_multi(prefix: String) -> CommentPrefix
 
pub fn new_multi(prefix: String) -> CommentPrefix
Creates a new CommentPrefix for the Multi variant.
sourcepub fn new_from_str(prefix: &str) -> CommentPrefix
 
pub fn new_from_str(prefix: &str) -> CommentPrefix
Creates a new CommentPrefix from a &str.
Trait Implementations§
source§impl Clone for CommentPrefix
 
impl Clone for CommentPrefix
source§fn clone(&self) -> CommentPrefix
 
fn clone(&self) -> CommentPrefix
Returns a copy 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 CommentPrefix
 
impl Debug for CommentPrefix
source§impl From<&str> for CommentPrefix
 
impl From<&str> for CommentPrefix
source§fn from(value: &str) -> CommentPrefix
 
fn from(value: &str) -> CommentPrefix
Converts to this type from the input type.
source§impl Hash for CommentPrefix
 
impl Hash for CommentPrefix
source§impl PartialEq for CommentPrefix
 
impl PartialEq for CommentPrefix
source§fn eq(&self, other: &CommentPrefix) -> bool
 
fn eq(&self, other: &CommentPrefix) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for CommentPrefix
impl StructuralPartialEq for CommentPrefix
Auto Trait Implementations§
impl Freeze for CommentPrefix
impl RefUnwindSafe for CommentPrefix
impl Send for CommentPrefix
impl Sync for CommentPrefix
impl Unpin for CommentPrefix
impl UnwindSafe for CommentPrefix
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
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.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