pub struct ArAgingSummaryOutput {
pub current: f64,
pub days_1_30: f64,
pub days_31_60: f64,
pub days_61_90: f64,
pub days_over_90: f64,
pub total: f64,
}Fields§
§current: f64§days_1_30: f64§days_31_60: f64§days_61_90: f64§days_over_90: f64§total: f64Trait Implementations§
Source§impl Clone for ArAgingSummaryOutput
impl Clone for ArAgingSummaryOutput
Source§fn clone(&self) -> ArAgingSummaryOutput
fn clone(&self) -> ArAgingSummaryOutput
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<'de> Deserialize<'de> for ArAgingSummaryOutput
impl<'de> Deserialize<'de> for ArAgingSummaryOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ArAgingSummary> for ArAgingSummaryOutput
impl From<ArAgingSummary> for ArAgingSummaryOutput
Source§fn from(a: ArAgingSummary) -> Self
fn from(a: ArAgingSummary) -> Self
Converts to this type from the input type.
Source§impl FromNapiValue for ArAgingSummaryOutput
impl FromNapiValue for ArAgingSummaryOutput
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl Serialize for ArAgingSummaryOutput
impl Serialize for ArAgingSummaryOutput
Source§impl ToNapiValue for ArAgingSummaryOutput
impl ToNapiValue for ArAgingSummaryOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: ArAgingSummaryOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: ArAgingSummaryOutput, ) -> Result<napi_value>
Safety Read more
Source§impl TypeName for ArAgingSummaryOutput
impl TypeName for ArAgingSummaryOutput
Source§impl ValidateNapiValue for ArAgingSummaryOutput
impl ValidateNapiValue for ArAgingSummaryOutput
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for ArAgingSummaryOutput
impl RefUnwindSafe for ArAgingSummaryOutput
impl Send for ArAgingSummaryOutput
impl Sync for ArAgingSummaryOutput
impl Unpin for ArAgingSummaryOutput
impl UnsafeUnpin for ArAgingSummaryOutput
impl UnwindSafe for ArAgingSummaryOutput
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