pub enum RemoveLinesInvoiceLinesBehavior {
Delete,
Unassign,
}
Expand description
Either delete
or unassign
.
Deleted line items are permanently deleted.
Unassigned line items can be reassigned to an invoice.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RemoveLinesInvoiceLinesBehavior
impl Clone for RemoveLinesInvoiceLinesBehavior
Source§fn clone(&self) -> RemoveLinesInvoiceLinesBehavior
fn clone(&self) -> RemoveLinesInvoiceLinesBehavior
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 moreSource§impl PartialEq for RemoveLinesInvoiceLinesBehavior
impl PartialEq for RemoveLinesInvoiceLinesBehavior
Source§fn eq(&self, other: &RemoveLinesInvoiceLinesBehavior) -> bool
fn eq(&self, other: &RemoveLinesInvoiceLinesBehavior) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for RemoveLinesInvoiceLinesBehavior
impl Eq for RemoveLinesInvoiceLinesBehavior
impl StructuralPartialEq for RemoveLinesInvoiceLinesBehavior
Auto Trait Implementations§
impl Freeze for RemoveLinesInvoiceLinesBehavior
impl RefUnwindSafe for RemoveLinesInvoiceLinesBehavior
impl Send for RemoveLinesInvoiceLinesBehavior
impl Sync for RemoveLinesInvoiceLinesBehavior
impl Unpin for RemoveLinesInvoiceLinesBehavior
impl UnwindSafe for RemoveLinesInvoiceLinesBehavior
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