From 74c3f78183483f20adcf98c80b07267f1150366a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 3 Jan 2023 14:36:43 +0100 Subject: [PATCH] some more docs added --- satrs-core/src/seq_count.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/satrs-core/src/seq_count.rs b/satrs-core/src/seq_count.rs index 6a17647..3236b71 100644 --- a/satrs-core/src/seq_count.rs +++ b/satrs-core/src/seq_count.rs @@ -14,6 +14,8 @@ pub trait SequenceCountProviderCore { } } +/// Extension trait which allows cloning a sequence count provider after it was turned into +/// a trait object. #[cfg(feature = "alloc")] pub trait SequenceCountProvider: SequenceCountProviderCore + DynClone {} #[cfg(feature = "alloc")]