pub struct PciDeviceStructurePciToCardbusBridge {Show 23 fields
pub common_header: PciDeviceStructureHeader,
pub cardbus_socket_ex_ca_base_address: u32,
pub offset_of_capabilities_list: u8,
pub reserved: u8,
pub secondary_status: u16,
pub pci_bus_number: u8,
pub card_bus_bus_number: u8,
pub subordinate_bus_number: u8,
pub card_bus_latency_timer: u8,
pub memory_base_address0: u32,
pub memory_limit0: u32,
pub memory_base_address1: u32,
pub memory_limit1: u32,
pub io_base_address0: u32,
pub io_limit0: u32,
pub io_base_address1: u32,
pub io_limit1: u32,
pub interrupt_line: u8,
pub interrupt_pin: u8,
pub bridge_control: u16,
pub subsystem_device_id: u16,
pub subsystem_vendor_id: u16,
pub pc_card_legacy_mode_base_address_16_bit: u32,
}Expand description
Pci_Device_Structure_Pci_to_Cardbus_Bridge Pci_to_Cardbus桥设备结构体
Fields§
§common_header: PciDeviceStructureHeader§cardbus_socket_ex_ca_base_address: u32§offset_of_capabilities_list: u8§reserved: u8§secondary_status: u16§pci_bus_number: u8§card_bus_bus_number: u8§subordinate_bus_number: u8§card_bus_latency_timer: u8§memory_base_address0: u32§memory_limit0: u32§memory_base_address1: u32§memory_limit1: u32§io_base_address0: u32§io_limit0: u32§io_base_address1: u32§io_limit1: u32§interrupt_line: u8§interrupt_pin: u8§bridge_control: u16§subsystem_device_id: u16§subsystem_vendor_id: u16§pc_card_legacy_mode_base_address_16_bit: u32Trait Implementations§
Source§impl Clone for PciDeviceStructurePciToCardbusBridge
impl Clone for PciDeviceStructurePciToCardbusBridge
Source§fn clone(&self) -> PciDeviceStructurePciToCardbusBridge
fn clone(&self) -> PciDeviceStructurePciToCardbusBridge
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PciDeviceStructure for PciDeviceStructurePciToCardbusBridge
impl PciDeviceStructure for PciDeviceStructurePciToCardbusBridge
Source§fn header_type(&self) -> HeaderType
fn header_type(&self) -> HeaderType
Get the type of the device structure.
Source§fn as_pci_to_carbus_bridge_device(
&self,
) -> Option<&PciDeviceStructurePciToCardbusBridge>
fn as_pci_to_carbus_bridge_device( &self, ) -> Option<&PciDeviceStructurePciToCardbusBridge>
This function returns a
PciDeviceStructurePciToCardbusBridge if the device structure is a pci to cardbus bridge, and None otherwise.Source§fn as_pci_to_carbus_bridge_device_mut(
&mut self,
) -> Option<&mut PciDeviceStructurePciToCardbusBridge>
fn as_pci_to_carbus_bridge_device_mut( &mut self, ) -> Option<&mut PciDeviceStructurePciToCardbusBridge>
Return a mutable reference to the PciDeviceStructurePciToCardbusBridge if the device structure is a pci to cardbus bridge, and
None otherwise.Source§fn common_header(&self) -> &PciDeviceStructureHeader
fn common_header(&self) -> &PciDeviceStructureHeader
Return a immutable reference to the common header.
Source§fn common_header_mut(&mut self) -> &mut PciDeviceStructureHeader
fn common_header_mut(&mut self) -> &mut PciDeviceStructureHeader
Returns the mutable reference to the common header.
Source§fn as_standard_device(&self) -> Option<&PciDeviceStructureGeneralDevice>
fn as_standard_device(&self) -> Option<&PciDeviceStructureGeneralDevice>
This function returns a
PciDeviceStructureGeneralDevice if the device structure is a standard device, and None otherwise.Source§fn as_pci_to_pci_bridge_device(
&self,
) -> Option<&PciDeviceStructurePciToPciBridge>
fn as_pci_to_pci_bridge_device( &self, ) -> Option<&PciDeviceStructurePciToPciBridge>
This function returns a
PciDeviceStructurePciToPciBridge if the device structure is a pci to pci bridge, and None otherwise.Source§fn as_standard_device_mut(
&mut self,
) -> Option<&mut PciDeviceStructureGeneralDevice>
fn as_standard_device_mut( &mut self, ) -> Option<&mut PciDeviceStructureGeneralDevice>
Return a mutable reference to the PciDeviceStructureGeneralDevice if the device structure is a standard device, and
None otherwise.Source§fn as_pci_to_pci_bridge_device_mut(
&mut self,
) -> Option<&mut PciDeviceStructurePciToPciBridge>
fn as_pci_to_pci_bridge_device_mut( &mut self, ) -> Option<&mut PciDeviceStructurePciToPciBridge>
Return a mutable reference to the PciDeviceStructurePciToPciBridge if the device structure is a pci to pci bridge, and
None otherwise.Source§fn capabilities(&self) -> Option<CapabilityIterator>
fn capabilities(&self) -> Option<CapabilityIterator>
Returns the iterator of the Capabilities.
Source§fn status_command(&self) -> (Status, Command)
fn status_command(&self) -> (Status, Command)
Gets the values of the Status and Command registers.
Source§fn set_command(&mut self, command: Command)
fn set_command(&mut self, command: Command)
Set the value of the Command register.
Source§fn bar_init(&mut self) -> Option<Result<u8, PciError>>
fn bar_init(&mut self) -> Option<Result<u8, PciError>>
@brief 读取standard设备的bar寄存器,映射后将结果加入结构体的standard_device_bar变量
@return 只有standard设备才返回成功或者错误,其余返回None
fn enable_master(&mut self)
Auto Trait Implementations§
impl Freeze for PciDeviceStructurePciToCardbusBridge
impl RefUnwindSafe for PciDeviceStructurePciToCardbusBridge
impl Send for PciDeviceStructurePciToCardbusBridge
impl Sync for PciDeviceStructurePciToCardbusBridge
impl Unpin for PciDeviceStructurePciToCardbusBridge
impl UnwindSafe for PciDeviceStructurePciToCardbusBridge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Colorize for Twhere
T: ?Sized,
impl<T> Colorize for Twhere
T: ?Sized,
Source§fn into_style(self) -> StyledValue<Self>where
Self: Sized,
fn into_style(self) -> StyledValue<Self>where
Self: Sized,
Convert a value to a
StyledValue with no styling yet Read moreSource§fn style(&self) -> StyledValue<&Self>
fn style(&self) -> StyledValue<&Self>
Convert a value to a
StyledValue with no styling yet Read moreSource§fn into_style_with<F, B, U>(
self,
style: Style<F, B, U>,
) -> StyledValue<Self, F, B, U>where
Self: Sized,
fn into_style_with<F, B, U>(
self,
style: Style<F, B, U>,
) -> StyledValue<Self, F, B, U>where
Self: Sized,
Convert a value to a
StyledValue and applies the given style Read moreSource§fn style_with<F, B, U>(
&self,
style: Style<F, B, U>,
) -> StyledValue<&Self, F, B, U>
fn style_with<F, B, U>( &self, style: Style<F, B, U>, ) -> StyledValue<&Self, F, B, U>
Convert a value to a
StyledValue and applies the given style Read moreSource§fn fg<C>(&self, color: C) -> StyledValue<&Self, C>
fn fg<C>(&self, color: C) -> StyledValue<&Self, C>
Changes the foreground color Read more
Source§fn into_fg<C>(self, color: C) -> StyledValue<Self, C>where
Self: Sized,
fn into_fg<C>(self, color: C) -> StyledValue<Self, C>where
Self: Sized,
Changes the foreground color Read more
Source§fn bg<C>(&self, color: C) -> StyledValue<&Self, NoColor, C>
fn bg<C>(&self, color: C) -> StyledValue<&Self, NoColor, C>
Changes the background color Read more
Source§fn into_bg<C>(self, color: C) -> StyledValue<Self, NoColor, C>where
Self: Sized,
fn into_bg<C>(self, color: C) -> StyledValue<Self, NoColor, C>where
Self: Sized,
Changes the background color Read more
Source§fn underline_color<C>(
&self,
color: C,
) -> StyledValue<&Self, NoColor, NoColor, C>
fn underline_color<C>( &self, color: C, ) -> StyledValue<&Self, NoColor, NoColor, C>
Changes the underline color Read more
Source§fn into_underline_color<C>(
self,
color: C,
) -> StyledValue<Self, NoColor, NoColor, C>where
Self: Sized,
fn into_underline_color<C>(
self,
color: C,
) -> StyledValue<Self, NoColor, NoColor, C>where
Self: Sized,
Changes the underline color Read more
Source§fn black(&self) -> StyledValue<&Self, Black>
fn black(&self) -> StyledValue<&Self, Black>
Changes the foreground to black
Source§fn red(&self) -> StyledValue<&Self, Red>
fn red(&self) -> StyledValue<&Self, Red>
Changes the foreground to red
Source§fn green(&self) -> StyledValue<&Self, Green>
fn green(&self) -> StyledValue<&Self, Green>
Changes the foreground to green
Source§fn yellow(&self) -> StyledValue<&Self, Yellow>
fn yellow(&self) -> StyledValue<&Self, Yellow>
Changes the foreground to yellow
Source§fn blue(&self) -> StyledValue<&Self, Blue>
fn blue(&self) -> StyledValue<&Self, Blue>
Changes the foreground to blue
Source§fn magenta(&self) -> StyledValue<&Self, Magenta>
fn magenta(&self) -> StyledValue<&Self, Magenta>
Changes the foreground to magenta
Source§fn cyan(&self) -> StyledValue<&Self, Cyan>
fn cyan(&self) -> StyledValue<&Self, Cyan>
Changes the foreground to cyan
Source§fn white(&self) -> StyledValue<&Self, White>
fn white(&self) -> StyledValue<&Self, White>
Changes the foreground to white
Source§fn bright_black(&self) -> StyledValue<&Self, BrightBlack>
fn bright_black(&self) -> StyledValue<&Self, BrightBlack>
Changes the foreground to bright black
Source§fn bright_red(&self) -> StyledValue<&Self, BrightRed>
fn bright_red(&self) -> StyledValue<&Self, BrightRed>
Changes the foreground to bright red
Source§fn bright_green(&self) -> StyledValue<&Self, BrightGreen>
fn bright_green(&self) -> StyledValue<&Self, BrightGreen>
Changes the foreground to bright green
Source§fn bright_yellow(&self) -> StyledValue<&Self, BrightYellow>
fn bright_yellow(&self) -> StyledValue<&Self, BrightYellow>
Changes the foreground to bright yellow
Source§fn bright_blue(&self) -> StyledValue<&Self, BrightBlue>
fn bright_blue(&self) -> StyledValue<&Self, BrightBlue>
Changes the foreground to bright blue
Source§fn bright_magenta(&self) -> StyledValue<&Self, BrightMagenta>
fn bright_magenta(&self) -> StyledValue<&Self, BrightMagenta>
Changes the foreground to bright magenta
Source§fn bright_cyan(&self) -> StyledValue<&Self, BrightCyan>
fn bright_cyan(&self) -> StyledValue<&Self, BrightCyan>
Changes the foreground to bright cyan
Source§fn bright_white(&self) -> StyledValue<&Self, BrightWhite>
fn bright_white(&self) -> StyledValue<&Self, BrightWhite>
Changes the foreground to bright white
Source§fn on_magenta(&self) -> StyledValue<&Self, NoColor, Magenta>
fn on_magenta(&self) -> StyledValue<&Self, NoColor, Magenta>
Changes the background to magenta
Source§fn on_bright_black(&self) -> StyledValue<&Self, NoColor, BrightBlack>
fn on_bright_black(&self) -> StyledValue<&Self, NoColor, BrightBlack>
Changes the background to bright black
Source§fn on_bright_red(&self) -> StyledValue<&Self, NoColor, BrightRed>
fn on_bright_red(&self) -> StyledValue<&Self, NoColor, BrightRed>
Changes the background to bright red
Source§fn on_bright_green(&self) -> StyledValue<&Self, NoColor, BrightGreen>
fn on_bright_green(&self) -> StyledValue<&Self, NoColor, BrightGreen>
Changes the background to bright green
Source§fn on_bright_yellow(&self) -> StyledValue<&Self, NoColor, BrightYellow>
fn on_bright_yellow(&self) -> StyledValue<&Self, NoColor, BrightYellow>
Changes the background to bright yellow
Source§fn on_bright_blue(&self) -> StyledValue<&Self, NoColor, BrightBlue>
fn on_bright_blue(&self) -> StyledValue<&Self, NoColor, BrightBlue>
Changes the background to bright blue
Source§fn on_bright_magenta(&self) -> StyledValue<&Self, NoColor, BrightMagenta>
fn on_bright_magenta(&self) -> StyledValue<&Self, NoColor, BrightMagenta>
Changes the background to bright magenta
Source§fn on_bright_cyan(&self) -> StyledValue<&Self, NoColor, BrightCyan>
fn on_bright_cyan(&self) -> StyledValue<&Self, NoColor, BrightCyan>
Changes the background to bright cyan
Source§fn on_bright_white(&self) -> StyledValue<&Self, NoColor, BrightWhite>
fn on_bright_white(&self) -> StyledValue<&Self, NoColor, BrightWhite>
Changes the background to bright white
Source§fn into_black(self) -> StyledValue<Self, Black>where
Self: Sized,
fn into_black(self) -> StyledValue<Self, Black>where
Self: Sized,
Changes the foreground to black
Source§fn into_green(self) -> StyledValue<Self, Green>where
Self: Sized,
fn into_green(self) -> StyledValue<Self, Green>where
Self: Sized,
Changes the foreground to green
Source§fn into_yellow(self) -> StyledValue<Self, Yellow>where
Self: Sized,
fn into_yellow(self) -> StyledValue<Self, Yellow>where
Self: Sized,
Changes the foreground to yellow
Source§fn into_blue(self) -> StyledValue<Self, Blue>where
Self: Sized,
fn into_blue(self) -> StyledValue<Self, Blue>where
Self: Sized,
Changes the foreground to blue
Source§fn into_magenta(self) -> StyledValue<Self, Magenta>where
Self: Sized,
fn into_magenta(self) -> StyledValue<Self, Magenta>where
Self: Sized,
Changes the foreground to magenta
Source§fn into_cyan(self) -> StyledValue<Self, Cyan>where
Self: Sized,
fn into_cyan(self) -> StyledValue<Self, Cyan>where
Self: Sized,
Changes the foreground to cyan
Source§fn into_white(self) -> StyledValue<Self, White>where
Self: Sized,
fn into_white(self) -> StyledValue<Self, White>where
Self: Sized,
Changes the foreground to white
Source§fn into_bright_black(self) -> StyledValue<Self, BrightBlack>where
Self: Sized,
fn into_bright_black(self) -> StyledValue<Self, BrightBlack>where
Self: Sized,
Changes the foreground to bright black
Source§fn into_bright_red(self) -> StyledValue<Self, BrightRed>where
Self: Sized,
fn into_bright_red(self) -> StyledValue<Self, BrightRed>where
Self: Sized,
Changes the foreground to bright red
Source§fn into_bright_green(self) -> StyledValue<Self, BrightGreen>where
Self: Sized,
fn into_bright_green(self) -> StyledValue<Self, BrightGreen>where
Self: Sized,
Changes the foreground to bright green
Source§fn into_bright_yellow(self) -> StyledValue<Self, BrightYellow>where
Self: Sized,
fn into_bright_yellow(self) -> StyledValue<Self, BrightYellow>where
Self: Sized,
Changes the foreground to bright yellow
Source§fn into_bright_blue(self) -> StyledValue<Self, BrightBlue>where
Self: Sized,
fn into_bright_blue(self) -> StyledValue<Self, BrightBlue>where
Self: Sized,
Changes the foreground to bright blue
Source§fn into_bright_magenta(self) -> StyledValue<Self, BrightMagenta>where
Self: Sized,
fn into_bright_magenta(self) -> StyledValue<Self, BrightMagenta>where
Self: Sized,
Changes the foreground to bright magenta
Source§fn into_bright_cyan(self) -> StyledValue<Self, BrightCyan>where
Self: Sized,
fn into_bright_cyan(self) -> StyledValue<Self, BrightCyan>where
Self: Sized,
Changes the foreground to bright cyan
Source§fn into_bright_white(self) -> StyledValue<Self, BrightWhite>where
Self: Sized,
fn into_bright_white(self) -> StyledValue<Self, BrightWhite>where
Self: Sized,
Changes the foreground to bright white
Source§fn into_on_black(self) -> StyledValue<Self, NoColor, Black>where
Self: Sized,
fn into_on_black(self) -> StyledValue<Self, NoColor, Black>where
Self: Sized,
Changes the background to black
Source§fn into_on_red(self) -> StyledValue<Self, NoColor, Red>where
Self: Sized,
fn into_on_red(self) -> StyledValue<Self, NoColor, Red>where
Self: Sized,
Changes the background to red
Source§fn into_on_green(self) -> StyledValue<Self, NoColor, Green>where
Self: Sized,
fn into_on_green(self) -> StyledValue<Self, NoColor, Green>where
Self: Sized,
Changes the background to green
Source§fn into_on_yellow(self) -> StyledValue<Self, NoColor, Yellow>where
Self: Sized,
fn into_on_yellow(self) -> StyledValue<Self, NoColor, Yellow>where
Self: Sized,
Changes the background to yellow
Source§fn into_on_blue(self) -> StyledValue<Self, NoColor, Blue>where
Self: Sized,
fn into_on_blue(self) -> StyledValue<Self, NoColor, Blue>where
Self: Sized,
Changes the background to blue
Source§fn into_on_magenta(self) -> StyledValue<Self, NoColor, Magenta>where
Self: Sized,
fn into_on_magenta(self) -> StyledValue<Self, NoColor, Magenta>where
Self: Sized,
Changes the background to magenta
Source§fn into_on_cyan(self) -> StyledValue<Self, NoColor, Cyan>where
Self: Sized,
fn into_on_cyan(self) -> StyledValue<Self, NoColor, Cyan>where
Self: Sized,
Changes the background to cyan
Source§fn into_on_white(self) -> StyledValue<Self, NoColor, White>where
Self: Sized,
fn into_on_white(self) -> StyledValue<Self, NoColor, White>where
Self: Sized,
Changes the background to white
Source§fn into_on_bright_black(self) -> StyledValue<Self, NoColor, BrightBlack>where
Self: Sized,
fn into_on_bright_black(self) -> StyledValue<Self, NoColor, BrightBlack>where
Self: Sized,
Changes the background to bright black
Source§fn into_on_bright_red(self) -> StyledValue<Self, NoColor, BrightRed>where
Self: Sized,
fn into_on_bright_red(self) -> StyledValue<Self, NoColor, BrightRed>where
Self: Sized,
Changes the background to bright red
Source§fn into_on_bright_green(self) -> StyledValue<Self, NoColor, BrightGreen>where
Self: Sized,
fn into_on_bright_green(self) -> StyledValue<Self, NoColor, BrightGreen>where
Self: Sized,
Changes the background to bright green
Source§fn into_on_bright_yellow(self) -> StyledValue<Self, NoColor, BrightYellow>where
Self: Sized,
fn into_on_bright_yellow(self) -> StyledValue<Self, NoColor, BrightYellow>where
Self: Sized,
Changes the background to bright yellow
Source§fn into_on_bright_blue(self) -> StyledValue<Self, NoColor, BrightBlue>where
Self: Sized,
fn into_on_bright_blue(self) -> StyledValue<Self, NoColor, BrightBlue>where
Self: Sized,
Changes the background to bright blue
Source§fn into_on_bright_magenta(self) -> StyledValue<Self, NoColor, BrightMagenta>where
Self: Sized,
fn into_on_bright_magenta(self) -> StyledValue<Self, NoColor, BrightMagenta>where
Self: Sized,
Changes the background to bright magenta
Source§fn into_on_bright_cyan(self) -> StyledValue<Self, NoColor, BrightCyan>where
Self: Sized,
fn into_on_bright_cyan(self) -> StyledValue<Self, NoColor, BrightCyan>where
Self: Sized,
Changes the background to bright cyan
Source§fn into_on_bright_white(self) -> StyledValue<Self, NoColor, BrightWhite>where
Self: Sized,
fn into_on_bright_white(self) -> StyledValue<Self, NoColor, BrightWhite>where
Self: Sized,
Changes the background to bright white
Source§fn bold(&self) -> StyledValue<&Self>
fn bold(&self) -> StyledValue<&Self>
Applies the bold effect
Source§fn dimmed(&self) -> StyledValue<&Self>
fn dimmed(&self) -> StyledValue<&Self>
Applies the dimmed effect
Source§fn italics(&self) -> StyledValue<&Self>
fn italics(&self) -> StyledValue<&Self>
Applies the italics effect
Source§fn underline(&self) -> StyledValue<&Self>
fn underline(&self) -> StyledValue<&Self>
Applies the underline effect
Source§fn double_underline(&self) -> StyledValue<&Self>
fn double_underline(&self) -> StyledValue<&Self>
Applies the double underline effect
Source§fn blink(&self) -> StyledValue<&Self>
fn blink(&self) -> StyledValue<&Self>
Applies the blink effect
Source§fn blink_fast(&self) -> StyledValue<&Self>
fn blink_fast(&self) -> StyledValue<&Self>
Applies the blink fast effect
Source§fn reverse(&self) -> StyledValue<&Self>
fn reverse(&self) -> StyledValue<&Self>
Applies the reverse effect
Source§fn hide(&self) -> StyledValue<&Self>
fn hide(&self) -> StyledValue<&Self>
Applies the hide effect
Source§fn strikethrough(&self) -> StyledValue<&Self>
fn strikethrough(&self) -> StyledValue<&Self>
Applies the strikethrough effect
Source§fn overline(&self) -> StyledValue<&Self>
fn overline(&self) -> StyledValue<&Self>
Applies the overline effect
Source§fn superscript(&self) -> StyledValue<&Self>
fn superscript(&self) -> StyledValue<&Self>
Applies the superscript effect
Source§fn subscript(&self) -> StyledValue<&Self>
fn subscript(&self) -> StyledValue<&Self>
Applies the subscript effect
Source§fn into_bold(self) -> StyledValue<Self>where
Self: Sized,
fn into_bold(self) -> StyledValue<Self>where
Self: Sized,
Applies the bold effect
Source§fn into_dimmed(self) -> StyledValue<Self>where
Self: Sized,
fn into_dimmed(self) -> StyledValue<Self>where
Self: Sized,
Applies the dimmed effect
Source§fn into_italics(self) -> StyledValue<Self>where
Self: Sized,
fn into_italics(self) -> StyledValue<Self>where
Self: Sized,
Applies the italics effect
Source§fn into_underline(self) -> StyledValue<Self>where
Self: Sized,
fn into_underline(self) -> StyledValue<Self>where
Self: Sized,
Applies the underline effect
Source§fn into_double_underline(self) -> StyledValue<Self>where
Self: Sized,
fn into_double_underline(self) -> StyledValue<Self>where
Self: Sized,
Applies the double underline effect
Source§fn into_blink(self) -> StyledValue<Self>where
Self: Sized,
fn into_blink(self) -> StyledValue<Self>where
Self: Sized,
Applies the blink effect
Source§fn into_blink_fast(self) -> StyledValue<Self>where
Self: Sized,
fn into_blink_fast(self) -> StyledValue<Self>where
Self: Sized,
Applies the blink fast effect
Source§fn into_reverse(self) -> StyledValue<Self>where
Self: Sized,
fn into_reverse(self) -> StyledValue<Self>where
Self: Sized,
Applies the reverse effect
Source§fn into_hide(self) -> StyledValue<Self>where
Self: Sized,
fn into_hide(self) -> StyledValue<Self>where
Self: Sized,
Applies the hide effect
Source§fn into_strikethrough(self) -> StyledValue<Self>where
Self: Sized,
fn into_strikethrough(self) -> StyledValue<Self>where
Self: Sized,
Applies the strikethrough effect
Source§fn into_overline(self) -> StyledValue<Self>where
Self: Sized,
fn into_overline(self) -> StyledValue<Self>where
Self: Sized,
Applies the overline effect
Source§fn into_superscript(self) -> StyledValue<Self>where
Self: Sized,
fn into_superscript(self) -> StyledValue<Self>where
Self: Sized,
Applies the superscript effect
Source§fn into_subscript(self) -> StyledValue<Self>where
Self: Sized,
fn into_subscript(self) -> StyledValue<Self>where
Self: Sized,
Applies the subscript effect
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more