pub struct LogicalSplit {
pub from: Uuid,
pub to: Uuid,
pub from_commodity: Uuid,
pub to_commodity: Uuid,
pub value: Rational64,
pub to_amount: Option<Rational64>,
}Expand description
A from→to exchange; to_amount is required iff from_commodity != to_commodity.
Fields§
§from: Uuid§to: Uuid§from_commodity: Uuid§to_commodity: Uuid§value: Rational64§to_amount: Option<Rational64>Trait Implementations§
Source§impl Clone for LogicalSplit
impl Clone for LogicalSplit
Source§fn clone(&self) -> LogicalSplit
fn clone(&self) -> LogicalSplit
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 LogicalSplit
impl RefUnwindSafe for LogicalSplit
impl Send for LogicalSplit
impl Sync for LogicalSplit
impl Unpin for LogicalSplit
impl UnsafeUnpin for LogicalSplit
impl UnwindSafe for LogicalSplit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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