We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550aa76 commit 2400906Copy full SHA for 2400906
src/error.rs
@@ -14,7 +14,7 @@ pub enum TskitError {
14
#[error("Invalid index")]
15
IndexError,
16
/// Raised when samples are requested from
17
- /// [`Tree`] objects, but sample lists are
+ /// [`crate::Tree`] objects, but sample lists are
18
/// not being updated.
19
#[error("Not tracking samples in Trees")]
20
NotTrackingSamples,
src/ffi.rs
@@ -8,6 +8,8 @@ pub trait TskitTypeAccess<T> {
8
fn as_mut_ptr(&mut self) -> *mut T;
9
}
10
11
+/// Indexable, iterable wrapper around C
12
+/// arrays.
13
#[derive(Copy, Clone)]
pub(crate) struct WrappedTskArray<T> {
array: T,
0 commit comments