1 2 3 4 5 6 7 8 9 10
use crate::Id; #[derive(Debug, Clone, PartialEq)] #[non_exhaustive] pub(crate) struct Share { pub id: Id, pub name: String, pub key: Vec<u8>, pub readonly: bool, }
1 2 3 4 5 6 7 8 9 10
use crate::Id; #[derive(Debug, Clone, PartialEq)] #[non_exhaustive] pub(crate) struct Share { pub id: Id, pub name: String, pub key: Vec<u8>, pub readonly: bool, }