/// Some values are not ordered *like* the Mii Editor UI. The mapped values can be seen [here](https://www.3dbrew.org/wiki/Mii#Mapped_Editor_.3C-.3E_Hex_values).
///
/// This struct is returned by the [`MiiSelector`](crate::applets::mii_selector::MiiSelector)
/// This struct can be retrieved by [`MiiSelector::lauch()`](crate::applets::mii_selector::MiiSelector::launch).
#[derive(Clone, Debug)]
pubstructMiiData{
pubstructMii{
/// Mii options.
puboptions: MiiDataOptions,
puboptions: Options,
/// Position taken by the Mii on the Mii Selector screen.
@ -463,9 +463,9 @@ pub trait Camera {
@@ -463,9 +463,9 @@ pub trait Camera {
}
/// Set the trimming bounds relatively to the center of the image.
///
///
/// # Notes
///
///
/// The new width will be `trim_width / 2` to the left and right of the center.
/// The new height will be `trim_height / 2` above and below the center.
// TODO: This function doesn't use `TrimmingParams`. It'd be better to merge it with `set_trimming_params()` and change the `TrimmingParams` representation.
@ -606,7 +606,7 @@ pub trait Camera {
@@ -606,7 +606,7 @@ pub trait Camera {
/// coordinates of the second crop point.
///
/// # Arguments
///
///
/// * `width` - Width of the image
/// * `height` - height of the image
/// * `crop_0` - The first crop point in which the image will be trimmed
@ -672,9 +672,9 @@ pub trait Camera {
@@ -672,9 +672,9 @@ pub trait Camera {
}
/// Sets the effect of the camera.
///
///
/// # Notes
///
///
/// This operation will override any previously set [`Effect`]s.
/// Multiple effects can be set at once by combining the bitflags of [`Effect`].
#[doc(alias = "CAMU_SetEffect")]
@ -762,9 +762,9 @@ pub trait Camera {
@@ -762,9 +762,9 @@ pub trait Camera {
/// * `y` - Starting y coordinate of the window
/// * `width` - Width of the window
/// * `height` - Height of the window
///
///
/// # Notes
///
///
/// To activate automatic white balance, you must pass [`WhiteBalance::Auto`] into [`Camera::set_white_balance()`].
#[doc(alias = "CAMU_SetAutoWhiteBalanceWindow")]
fnset_auto_white_balance_window(
@ -838,9 +838,9 @@ pub trait Camera {
@@ -838,9 +838,9 @@ pub trait Camera {
/// * `width` - Width of the desired image
/// * `height` - Height of the desired image
/// * `timeout` - Duration to wait for the image
///
///
/// # Example
///
///
/// ```no_run
/// # use std::error::Error;
/// # use std::time::Duration;
@ -848,19 +848,19 @@ pub trait Camera {
@@ -848,19 +848,19 @@ pub trait Camera {
/// #
/// use ctru::services::cam::{Cam, Camera, ViewSize, OutputFormat};