xrpl_std/core/ledger_objects/current_escrow.rs
1use crate::core::ledger_objects::traits::{CurrentEscrowFields, CurrentLedgerObjectCommonFields};
2
3#[derive(Debug, Clone, Copy, Eq, PartialEq)]
4#[repr(C)]
5pub struct CurrentEscrow;
6
7impl CurrentLedgerObjectCommonFields for CurrentEscrow {}
8
9impl CurrentEscrowFields for CurrentEscrow {}
10
11#[inline]
12pub fn get_current_escrow() -> CurrentEscrow {
13 CurrentEscrow
14}