#[repr(C)]
pub struct tsk_tree_t__bindgen_ty_1 { pub left: f64, pub right: f64, }
Expand description

@brief Left and right coordinates of the genomic interval that this tree covers. The left coordinate is inclusive and the right coordinate exclusive.

@rst

Example:

.. code-block:: c

tsk_tree_t tree; int ret; ret = tsk_tree_first(&tree); assert(ret == TSK_TREE_OK); printf(“Coordinates covered by first tree are left=%f, right=%f\n”, tree.interval.left, tree.interval.right);

@endrst

Fields

left: f64right: f64

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Drops the content pointed by this pointer and frees it. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.