#[repr(C)]
pub struct DevicePathFromText { /* private fields */ }
Expand description

Device Path from Text protocol.

This protocol provides common utilities for converting text to device paths and device nodes.

Implementations§

source§

impl DevicePathFromText

source

pub fn convert_text_to_device_node( &self, text_device_node: &CStr16 ) -> Result<&DevicePathNode>

Convert text to the binary representation of a device node.

text_device_node is the text representation of a device node. Conversion starts with the first character and continues until the first non-device node character.

Returns an OUT_OF_RESOURCES error if there is insufficient memory for the conversion.

source

pub fn convert_text_to_device_path( &self, text_device_path: &CStr16 ) -> Result<&DevicePath>

Convert a text to its binary device path representation.

text_device_path is the text representation of a device path. Conversion starts with the first character and continues until the first non-device path character.

Returns an OUT_OF_RESOURCES error if there is insufficient memory for the conversion.

Trait Implementations§

source§

impl Identify for DevicePathFromText

source§

const GUID: Guid = _

Unique protocol identifier.
source§

impl Protocol for DevicePathFromText

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<P> ProtocolPointer for Pwhere P: Protocol,

source§

unsafe fn ptr_from_ffi(ptr: *const c_void) -> *const P

Create a const pointer to a Protocol from a c_void pointer. Read more
source§

unsafe fn mut_ptr_from_ffi(ptr: *mut c_void) -> *mut P

Create a mutable pointer to a Protocol from a c_void pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.