mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
31 lines
938 B
Rust
31 lines
938 B
Rust
|
#[macro_export]
|
||
|
macro_rules! impl_def_and_def_mut {
|
||
|
($target:ident, $item: ident) => {
|
||
|
impl std::ops::Deref for $target {
|
||
|
type Target = Vec<$item>;
|
||
|
|
||
|
fn deref(&self) -> &Self::Target { &self.items }
|
||
|
}
|
||
|
impl std::ops::DerefMut for $target {
|
||
|
fn deref_mut(&mut self) -> &mut Self::Target { &mut self.items }
|
||
|
}
|
||
|
|
||
|
impl $target {
|
||
|
#[allow(dead_code)]
|
||
|
pub fn into_inner(&mut self) -> Vec<$item> { ::std::mem::replace(&mut self.items, vec![]) }
|
||
|
|
||
|
#[allow(dead_code)]
|
||
|
pub fn push(&mut self, item: $item) {
|
||
|
if self.items.contains(&item) {
|
||
|
log::error!("add duplicate item: {:?}", item);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
self.items.push(item);
|
||
|
}
|
||
|
|
||
|
pub fn first_or_crash(&self) -> &$item { self.items.first().unwrap() }
|
||
|
}
|
||
|
};
|
||
|
}
|