pub struct Symlink {
pub name: String,
pub target: Vec<u8>,
}Expand description
Symlink object pointing to a target path.
Fields§
§name: String§target: Vec<u8>Trait Implementations§
Source§impl<D: ResourceDialect> Decode<Symlink, D> for Symlink
impl<D: ResourceDialect> Decode<Symlink, D> for Symlink
Source§impl<D: ResourceDialect, T0: Encode<BoundedString<255>, D>, T1: Encode<Vector<u8, 4095>, D>> Encode<Symlink, D> for (T0, T1)
impl<D: ResourceDialect, T0: Encode<BoundedString<255>, D>, T1: Encode<Vector<u8, 4095>, D>> Encode<Symlink, D> for (T0, T1)
impl Eq for Symlink
Source§impl Ord for Symlink
impl Ord for Symlink
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialOrd for Symlink
impl PartialOrd for Symlink
impl Persistable for Symlink
impl StructuralPartialEq for Symlink
Source§impl TypeMarker for Symlink
impl TypeMarker for Symlink
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Auto Trait Implementations§
impl Freeze for Symlink
impl RefUnwindSafe for Symlink
impl Send for Symlink
impl Sync for Symlink
impl Unpin for Symlink
impl UnsafeUnpin for Symlink
impl UnwindSafe for Symlink
Blanket Implementations§
Source§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
Source§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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