[][src]Struct reaper_medium::KbdSectionInfo

pub struct KbdSectionInfo(_);

Pointer to a section (in which actions can be registered).

One example of this is the REAPER main section which contains most of REAPER's actions.

Implementations

impl KbdSectionInfo[src]

pub fn action_list_cnt(&self) -> u32[src]

Returns the number of actions in this section.

pub fn get_action_by_index(&self, index: u32) -> Option<KbdCmd>[src]

Returns the action at the specified index.

Trait Implementations

impl Debug for KbdSectionInfo[src]

impl Eq for KbdSectionInfo[src]

impl Hash for KbdSectionInfo[src]

impl PartialEq<KbdSectionInfo> for KbdSectionInfo[src]

impl StructuralEq for KbdSectionInfo[src]

impl StructuralPartialEq for KbdSectionInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.