Merge branch 'byte_array' of github.com:fluencelabs/interface-types into struct_support

This commit is contained in:
vms 2020-07-25 11:03:21 +03:00
commit 5cf972b348

View File

@ -40,6 +40,11 @@ where
Ok(Self(items))
}
}
/// Converts this Vec1 into Vec
pub fn into_vec(self) -> Vec<T> {
self.0
}
}
impl<T> fmt::Debug for Vec1<T>