pub enum BlockUpdate {
Parent(BlockId),
Rect(GridRect),
Locked(bool),
Role(Role),
Icon(Icon),
Title(<Label as Entity>::Update),
TypeLabel(<Label as Entity>::Update),
}Variants§
Parent(BlockId)
Rect(GridRect)
Locked(bool)
Role(Role)
Icon(Icon)
Title(<Label as Entity>::Update)
TypeLabel(<Label as Entity>::Update)
Trait Implementations§
Source§impl Clone for BlockUpdate
impl Clone for BlockUpdate
Source§fn clone(&self) -> BlockUpdate
fn clone(&self) -> BlockUpdate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlockUpdate
impl Debug for BlockUpdate
Source§impl<'de> Deserialize<'de> for BlockUpdate
impl<'de> Deserialize<'de> for BlockUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BlockUpdate
impl PartialEq for BlockUpdate
Source§impl Serialize for BlockUpdate
impl Serialize for BlockUpdate
impl StructuralPartialEq for BlockUpdate
Auto Trait Implementations§
impl Freeze for BlockUpdate
impl RefUnwindSafe for BlockUpdate
impl Send for BlockUpdate
impl Sync for BlockUpdate
impl Unpin for BlockUpdate
impl UnsafeUnpin for BlockUpdate
impl UnwindSafe for BlockUpdate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more