pub struct OwnershipHierarchyNode {
pub company_code: String,
pub direct_ownership: Decimal,
pub effective_ownership: Decimal,
pub children: Vec<OwnershipHierarchyNode>,
}Expand description
Node in ownership hierarchy.
Fields§
§company_code: StringCompany code.
direct_ownership: DecimalDirect ownership percentage from parent.
effective_ownership: DecimalEffective ownership from root.
children: Vec<OwnershipHierarchyNode>Children.
Trait Implementations§
Source§impl Clone for OwnershipHierarchyNode
impl Clone for OwnershipHierarchyNode
Source§fn clone(&self) -> OwnershipHierarchyNode
fn clone(&self) -> OwnershipHierarchyNode
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 OwnershipHierarchyNode
impl RefUnwindSafe for OwnershipHierarchyNode
impl Send for OwnershipHierarchyNode
impl Sync for OwnershipHierarchyNode
impl Unpin for OwnershipHierarchyNode
impl UnwindSafe for OwnershipHierarchyNode
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