pub trait Frame_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Maximize(&self) -> Result<()>;
    fn Minimize(&self) -> Result<()>;
    fn Restore(&self) -> Result<()>;
    fn Top(&self) -> Result<i32>;
    fn SetTop(&self, top: i32) -> Result<()>;
    fn Bottom(&self) -> Result<i32>;
    fn SetBottom(&self, bottom: i32) -> Result<()>;
    fn Left(&self) -> Result<i32>;
    fn SetLeft(&self, left: i32) -> Result<()>;
    fn Right(&self) -> Result<i32>;
    fn SetRight(&self, right: i32) -> Result<()>;
}

Required Methods§

fn Maximize(&self) -> Result<()>

fn Minimize(&self) -> Result<()>

fn Restore(&self) -> Result<()>

fn Top(&self) -> Result<i32>

fn SetTop(&self, top: i32) -> Result<()>

fn Bottom(&self) -> Result<i32>

fn SetBottom(&self, bottom: i32) -> Result<()>

fn Left(&self) -> Result<i32>

fn SetLeft(&self, left: i32) -> Result<()>

fn Right(&self) -> Result<i32>

fn SetRight(&self, right: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§