pub enum BuildBuilderError {
InvalidRuleId(InvalidRuleId),
InvalidFileName(InvalidFileName),
InvalidVariable(InvalidVariable),
InvalidVariableId(InvalidVariableId),
DynDepAlreadyDefined {
previous: FileName,
dyndep: FileName,
},
VariableAlreadyDefined {
id: VariableId,
previous: Variable,
var: Variable,
},
}
Variants§
InvalidRuleId(InvalidRuleId)
InvalidFileName(InvalidFileName)
InvalidVariable(InvalidVariable)
InvalidVariableId(InvalidVariableId)
DynDepAlreadyDefined
VariableAlreadyDefined
Trait Implementations§
Source§impl Clone for BuildBuilderError
impl Clone for BuildBuilderError
Source§fn clone(&self) -> BuildBuilderError
fn clone(&self) -> BuildBuilderError
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 moreAuto Trait Implementations§
impl Freeze for BuildBuilderError
impl RefUnwindSafe for BuildBuilderError
impl Send for BuildBuilderError
impl Sync for BuildBuilderError
impl Unpin for BuildBuilderError
impl UnwindSafe for BuildBuilderError
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