pub struct Split<Q>where
Q: Query,{
pub guid: String,
pub tx_guid: String,
pub account_guid: String,
pub memo: String,
pub action: String,
pub reconcile_state: bool,
pub reconcile_datetime: Option<NaiveDateTime>,
pub value: Num,
pub quantity: Num,
pub lot_guid: String,
/* private fields */
}Fields§
§guid: String§tx_guid: String§account_guid: String§memo: String§action: String§reconcile_state: bool§reconcile_datetime: Option<NaiveDateTime>§value: Num§quantity: Num§lot_guid: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<Q> Freeze for Split<Q>
impl<Q> RefUnwindSafe for Split<Q>where
Q: RefUnwindSafe,
impl<Q> Send for Split<Q>
impl<Q> Sync for Split<Q>
impl<Q> Unpin for Split<Q>
impl<Q> UnwindSafe for Split<Q>where
Q: RefUnwindSafe,
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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