Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Jeffrey committed Aug 30, 2019
1 parent 0e1d4c1 commit 3a239ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/shared_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ pub struct SharedVec<T: SharedMemCast> {
}

impl<T: SharedMemCast> SharedVec<T> {
pub(crate) fn from_iter_in<C>(collection: C, alloc: &ShmemAllocator) -> Option<SharedVec<T>> where
pub(crate) fn from_iter_in<C>(collection: C, alloc: &ShmemAllocator) -> Option<SharedVec<T>>
where
C: IntoIterator<Item = T>,
C::IntoIter: ExactSizeIterator,
{
Expand Down

0 comments on commit 3a239ff

Please sign in to comment.