pub enum CodeRequirementExpression<'a> {
Show 24 variants
False,
True,
Identifier(Cow<'a, str>),
AnchorApple,
AnchorCertificateHash(i32, Cow<'a, [u8]>),
InfoKeyValueLegacy(Cow<'a, str>, Cow<'a, str>),
And(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>),
Or(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>),
CodeDirectoryHash(Cow<'a, [u8]>),
Not(Box<CodeRequirementExpression<'a>>),
InfoPlistKeyField(Cow<'a, str>, CodeRequirementMatchExpression<'a>),
CertificateField(i32, Cow<'a, str>, CodeRequirementMatchExpression<'a>),
CertificateTrusted(i32),
AnchorTrusted,
CertificateGeneric(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>),
AnchorAppleGeneric,
EntitlementsKey(Cow<'a, str>, CodeRequirementMatchExpression<'a>),
CertificatePolicy(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>),
NamedAnchor(Cow<'a, str>),
NamedCode(Cow<'a, str>),
Platform(u32),
Notarized,
CertificateFieldDate(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>),
LegacyDeveloperId,
}
Expand description
Defines a code requirement expression.
Variants§
False
False
false
No payload.
True
True
true
No payload.
Identifier(Cow<'a, str>)
Signing identifier.
identifier <string>
4 bytes length followed by C string.
AnchorApple
The certificate chain must lead to an Apple root.
anchor apple
No payload.
AnchorCertificateHash(i32, Cow<'a, [u8]>)
The certificate chain must anchor to a certificate with specified SHA-1 hash.
certificate <slot> = H"<hash>"
4 bytes slot number, 4 bytes hash length, hash value.
InfoKeyValueLegacy(Cow<'a, str>, Cow<'a, str>)
Info.plist key value (legacy).
info[<key>] = <value>
2 pairs of (length + value).
And(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>)
Logical and.
expr0 and expr1
Payload consists of 2 sub-expressions with no additional encoding.
Or(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>)
Logical or.
expr0 or expr1
Payload consists of 2 sub-expressions with no additional encoding.
CodeDirectoryHash(Cow<'a, [u8]>)
Code directory hash.
`cdhash H“
4 bytes length followed by raw digest value.
Not(Box<CodeRequirementExpression<'a>>)
Logical not.
!expr
Payload is 1 sub-expression.
InfoPlistKeyField(Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Info plist key field.
info [key] match expression
e.g. info [CFBundleName] exists
4 bytes key length, key string, then match expression.
CertificateField(i32, Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Certificate field matches.
certificate <slot> [<field>] match expression
Slot i32, 4 bytes field length, field string, then match expression.
CertificateTrusted(i32)
Certificate in position is trusted for code signing.
certificate <position> trusted
4 bytes certificate position.
AnchorTrusted
The certificate chain must lead to a trusted root.
anchor trusted
No payload.
CertificateGeneric(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>)
Certificate field matches by OID.
certificate <slot> [field.<oid>] match expression
Slot i32, 4 bytes OID length, OID raw bytes, match expression.
AnchorAppleGeneric
For code signed by Apple, including from code signing certificates issued by Apple.
anchor apple generic
No payload.
EntitlementsKey(Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Value associated with specified key in signature’s embedded entitlements dictionary.
entitlement [<key>] match expression
4 bytes key length, key bytes, match expression.
CertificatePolicy(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>)
OID associated with certificate in a given slot.
It is unknown what the OID means.
certificate <slot> [policy.<oid>] match expression
NamedAnchor(Cow<'a, str>)
A named Apple anchor.
anchor apple <name>
4 bytes name length, name bytes.
NamedCode(Cow<'a, str>)
Named code.
(<name>)
4 bytes name length, name bytes.
Platform(u32)
Platform value.
platform = <value>
Payload is a u32.
Notarized
Binary is notarized.
notarized
No Payload.
CertificateFieldDate(i32, Oid<&'a [u8]>, CodeRequirementMatchExpression<'a>)
Certificate field date.
Unknown what the OID corresponds to.
certificate <slot> [timestamp.<oid>] match expression
LegacyDeveloperId
Legacy developer ID used.
Implementations§
source§impl<'a> CodeRequirementExpression<'a>
impl<'a> CodeRequirementExpression<'a>
sourcepub fn from_bytes(
data: &'a [u8]
) -> Result<(Self, &'a [u8]), AppleCodesignError>
pub fn from_bytes( data: &'a [u8] ) -> Result<(Self, &'a [u8]), AppleCodesignError>
Construct an expression element by reading from a slice.
Returns the newly constructed element and remaining data in the slice.
Trait Implementations§
source§impl<'a> Clone for CodeRequirementExpression<'a>
impl<'a> Clone for CodeRequirementExpression<'a>
source§fn clone(&self) -> CodeRequirementExpression<'a>
fn clone(&self) -> CodeRequirementExpression<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for CodeRequirementExpression<'a>
impl<'a> Debug for CodeRequirementExpression<'a>
source§impl<'a> Display for CodeRequirementExpression<'a>
impl<'a> Display for CodeRequirementExpression<'a>
source§impl<'a> PartialEq for CodeRequirementExpression<'a>
impl<'a> PartialEq for CodeRequirementExpression<'a>
source§fn eq(&self, other: &CodeRequirementExpression<'a>) -> bool
fn eq(&self, other: &CodeRequirementExpression<'a>) -> bool
self
and other
values to be equal, and is used
by ==
.impl<'a> StructuralPartialEq for CodeRequirementExpression<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CodeRequirementExpression<'a>
impl<'a> Send for CodeRequirementExpression<'a>
impl<'a> Sync for CodeRequirementExpression<'a>
impl<'a> Unpin for CodeRequirementExpression<'a>
impl<'a> UnwindSafe for CodeRequirementExpression<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute
] value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
[Quirk
] value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition
] value
applies. Replaces any previous condition.
See the crate level docs for more details.
Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.