pub struct GuiTabText {
pub active: bool,
pub text: String,
}
Fields§
§active: bool
§text: String
Trait Implementations§
Source§impl Clone for GuiTabText
impl Clone for GuiTabText
Source§fn clone(&self) -> GuiTabText
fn clone(&self) -> GuiTabText
Returns a copy 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 GuiTabText
impl Debug for GuiTabText
Source§impl Default for GuiTabText
impl Default for GuiTabText
Source§fn default() -> GuiTabText
fn default() -> GuiTabText
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for GuiTabText
impl FromByteSlice for GuiTabText
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> GuiTabText
fn from_le_byte_slice(bytes: &[u8]) -> GuiTabText
Deserialize the implementing type from a byte slice.
Source§impl Hash for GuiTabText
impl Hash for GuiTabText
Source§impl PartialEq for GuiTabText
impl PartialEq for GuiTabText
impl Eq for GuiTabText
impl StructuralPartialEq for GuiTabText
Auto Trait Implementations§
impl Freeze for GuiTabText
impl RefUnwindSafe for GuiTabText
impl Send for GuiTabText
impl Sync for GuiTabText
impl Unpin for GuiTabText
impl UnwindSafe for GuiTabText
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