pub struct GlAccountOutput {
pub id: String,
pub account_number: String,
pub name: String,
pub account_type: String,
pub balance: f64,
pub status: String,
pub description: Option<String>,
}Fields§
§id: String§account_number: String§name: String§account_type: String§balance: f64§status: String§description: Option<String>Trait Implementations§
Source§impl Clone for GlAccountOutput
impl Clone for GlAccountOutput
Source§fn clone(&self) -> GlAccountOutput
fn clone(&self) -> GlAccountOutput
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 GlAccountOutput
impl<'de> Deserialize<'de> for GlAccountOutput
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<GlAccount> for GlAccountOutput
impl From<GlAccount> for GlAccountOutput
Source§impl FromNapiValue for GlAccountOutput
impl FromNapiValue for GlAccountOutput
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 GlAccountOutput
impl Serialize for GlAccountOutput
Source§impl ToNapiValue for GlAccountOutput
impl ToNapiValue for GlAccountOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: GlAccountOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: GlAccountOutput, ) -> Result<napi_value>
Safety Read more
Source§impl TypeName for GlAccountOutput
impl TypeName for GlAccountOutput
Source§impl ValidateNapiValue for GlAccountOutput
impl ValidateNapiValue for GlAccountOutput
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 GlAccountOutput
impl RefUnwindSafe for GlAccountOutput
impl Send for GlAccountOutput
impl Sync for GlAccountOutput
impl Unpin for GlAccountOutput
impl UnsafeUnpin for GlAccountOutput
impl UnwindSafe for GlAccountOutput
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