StaticPairSerializable::into_elements docs

This commit is contained in:
AF 2023-07-30 17:00:01 +00:00
parent 8332f89363
commit c36563fb05

View File

@ -18,6 +18,7 @@ pub trait StaticPairSerializable {
/// Borrow both elements. /// Borrow both elements.
fn elements(&self) -> (&Self::SA, &Self::SB); fn elements(&self) -> (&Self::SA, &Self::SB);
/// Separate into elements.
fn into_elements(self) -> (Self::SA, Self::SB); fn into_elements(self) -> (Self::SA, Self::SB);
} }