Enum pregel_rs::graph_frame::MissingColumnError
source · pub enum MissingColumnError {
Id,
Src,
Dst,
}
Expand description
MissingColumnError
is an enum that represents errors that occur when a
required column is missing from a DataFrame. The Debug
trait allows for easy
debugging of the enum by printing its values in a formatted way.
Variants§
Id
Id
is a variant of MissingColumnError
that represents the error that
occurs when the Id
column is missing from a DataFrame.
Src
Src
is a variant of MissingColumnError
that represents the error that
occurs when the Src
column is missing from a DataFrame.
Dst
Dst
is a variant of MissingColumnError
that represents the error that
occurs when the Dst
column is missing from a DataFrame.
Trait Implementations§
source§impl Debug for MissingColumnError
impl Debug for MissingColumnError
Auto Trait Implementations§
impl RefUnwindSafe for MissingColumnError
impl Send for MissingColumnError
impl Sync for MissingColumnError
impl Unpin for MissingColumnError
impl UnwindSafe for MissingColumnError
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