pub trait ISystemDisplayService: IObject {
Show 13 methods
fn get_z_order_count_min(&mut self, display_id: DisplayId) -> Result<i64>;
fn get_z_order_count_max(&mut self, display_id: DisplayId) -> Result<i64>;
fn set_layer_position(&mut self, x: f32, y: f32, id: LayerId) -> Result<()>;
fn set_layer_size(
&mut self,
id: LayerId,
width: u64,
height: u64
) -> Result<()>;
fn set_layer_z(&mut self, id: LayerId, z: i64) -> Result<()>;
fn set_layer_visibility(&mut self, visible: bool, id: LayerId) -> Result<()>;
fn sf_server_impl_get_z_order_count_min(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn sf_server_impl_get_z_order_count_max(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn sf_server_impl_set_layer_position(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn sf_server_impl_set_layer_size(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn sf_server_impl_set_layer_z(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn sf_server_impl_set_layer_visibility(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()> { ... }
fn get_sf_command_metadata_table(&self) -> CommandMetadataTable { ... }
}