pub struct PopupAnnotation {
pub base: AnnotationBase,
pub open: bool,
pub parent_name: Option<String>,
}Expand description
弹出窗口注释。
它一般不是独立内容本体,而是挂在别的注释旁边的“弹出说明框”。 弹出窗口注释。
它通常挂在别的注释旁边,用来显示补充说明。
Fields§
§base: AnnotationBase§open: bool打开状态
parent_name: Option<String>关联的父注释名称
Trait Implementations§
Source§impl Clone for PopupAnnotation
impl Clone for PopupAnnotation
Source§fn clone(&self) -> PopupAnnotation
fn clone(&self) -> PopupAnnotation
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 PopupAnnotation
impl Debug for PopupAnnotation
Source§impl<'de> Deserialize<'de> for PopupAnnotation
impl<'de> Deserialize<'de> for PopupAnnotation
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
Auto Trait Implementations§
impl Freeze for PopupAnnotation
impl RefUnwindSafe for PopupAnnotation
impl Send for PopupAnnotation
impl Sync for PopupAnnotation
impl Unpin for PopupAnnotation
impl UnsafeUnpin for PopupAnnotation
impl UnwindSafe for PopupAnnotation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more