Struct winsafe::gui::spec::StatusBarPart

source ·
pub struct StatusBarPart<'a> { /* private fields */ }
Available on crate feature gui only.
Expand description

A single part of a StatusBar control.

Note: Each object keeps the zero-based index of a part. If new parts are added/removed from the status bar control, the object may then point to a different item.

You cannot directly instantiate this object, it is created internally by the control.

Implementations§

source§

impl<'a> StatusBarPart<'a>

source

pub fn set_icon(&self, hicon: Option<&HICON>)

Sets the icon of a part by sending an sb::SetIcon message.

source

pub fn set_text(&self, text: &str)

Sets the text of a part by sending an sb::SetText message.

source

pub fn text(&self) -> String

Retrieves the text of the item by sending a sb::GetText message.

§Examples
use winsafe::{self as w, prelude::*, gui};

let my_sb: gui::StatusBar; // initialized somewhere

println!("Text: {}", my_sb.parts().get(0).text());

Trait Implementations§

source§

impl<'a> Clone for StatusBarPart<'a>

source§

fn clone(&self) -> StatusBarPart<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Copy for StatusBarPart<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for StatusBarPart<'a>

§

impl<'a> !RefUnwindSafe for StatusBarPart<'a>

§

impl<'a> !Send for StatusBarPart<'a>

§

impl<'a> !Sync for StatusBarPart<'a>

§

impl<'a> Unpin for StatusBarPart<'a>

§

impl<'a> !UnwindSafe for StatusBarPart<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.