Struct debian_packaging::control::ControlParagraph
source · [−]pub struct ControlParagraph<'a> { /* private fields */ }Expand description
A paragraph in a control file.
A paragraph is an ordered series of control fields.
Field names are case insensitive on read and case preserving on set.
Paragraphs can only contain a single occurrence of a field and this is enforced through the mutation APIs.
Implementations
sourceimpl<'a> ControlParagraph<'a>
impl<'a> ControlParagraph<'a>
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Whether the paragraph is empty.
Empty is defined by the lack of any fields.
sourcepub fn set_field(&mut self, field: ControlField<'a>)
pub fn set_field(&mut self, field: ControlField<'a>)
Set the value of a field via a ControlField.
If a field with the same name (case insensitive compare) already exists, the old value will be replaced by the incoming value.
sourcepub fn set_field_from_string(&mut self, name: Cow<'a, str>, value: Cow<'a, str>)
pub fn set_field_from_string(&mut self, name: Cow<'a, str>, value: Cow<'a, str>)
Set the value of a field defined via strings.
If a field with the same name (case insensitive compare) already exists, the old value will be replaced by the incoming value.
sourcepub fn has_field(&self, name: &str) -> bool
pub fn has_field(&self, name: &str) -> bool
Whether a named field is present in this paragraph.
sourcepub fn iter_fields(&self) -> impl Iterator<Item = &ControlField<'a>>
pub fn iter_fields(&self) -> impl Iterator<Item = &ControlField<'a>>
Iterate over fields in this paragraph.
Iteration order is insertion order.
sourcepub fn field(&self, name: &str) -> Option<&ControlField<'a>>
pub fn field(&self, name: &str) -> Option<&ControlField<'a>>
Obtain the field with a given name in this paragraph.
sourcepub fn field_mut(&mut self, name: &str) -> Option<&'a mut ControlField<'_>>
pub fn field_mut(&mut self, name: &str) -> Option<&'a mut ControlField<'_>>
Obtain a mutable reference to the field with a given name.
sourcepub fn required_field(&self, name: &str) -> Result<&ControlField<'a>>
pub fn required_field(&self, name: &str) -> Result<&ControlField<'a>>
Obtain the named field and error if it isn’t defined.
sourcepub fn field_str(&self, name: &str) -> Option<&str>
pub fn field_str(&self, name: &str) -> Option<&str>
Obtain the raw string value of the named field.
sourcepub fn required_field_str(&self, name: &str) -> Result<&str>
pub fn required_field_str(&self, name: &str) -> Result<&str>
Obtain the raw string value of the named field, erroring if the field is not present.
sourcepub fn field_bool(&self, name: &str) -> Option<bool>
pub fn field_bool(&self, name: &str) -> Option<bool>
Obtain the value of a field, evaluated as a boolean.
The field is true iff its string value is yes.
sourcepub fn field_u64(&self, name: &str) -> Option<Result<u64>>
pub fn field_u64(&self, name: &str) -> Option<Result<u64>>
Obtain the value of a field, evaluated as a u64.
sourcepub fn field_dependency_list(
&self,
name: &str
) -> Option<Result<DependencyList>>
pub fn field_dependency_list(
&self,
name: &str
) -> Option<Result<DependencyList>>
Obtain the value of a field, parsed as a DependencyList.
sourcepub fn field_datetime_rfc5322(
&self,
name: &str
) -> Option<Result<DateTime<Utc>>>
pub fn field_datetime_rfc5322(
&self,
name: &str
) -> Option<Result<DateTime<Utc>>>
Obtain the value of a field parsed as an RFC 5322 date string.
This will parse values like Sat, 09 Oct 2021 09:34:56 UTC.
The timezone is always normalized to UTC even if it is expressed differently in the source string.
sourcepub fn field_simple(&self, name: &str) -> Option<Result<ControlFieldValue<'a>>>
pub fn field_simple(&self, name: &str) -> Option<Result<ControlFieldValue<'a>>>
Obtain the field with the given name as a ControlFieldValue::Simple, if possible.
sourcepub fn field_folded(&self, name: &str) -> Option<ControlFieldValue<'a>>
pub fn field_folded(&self, name: &str) -> Option<ControlFieldValue<'a>>
Obtain the field with the given name as a ControlFieldValue::Folded.
sourcepub fn field_multiline(&self, name: &str) -> Option<ControlFieldValue<'a>>
pub fn field_multiline(&self, name: &str) -> Option<ControlFieldValue<'a>>
Obtain the field with the given name as a ControlFieldValue::Multiline.
sourcepub fn iter_field_words(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
pub fn iter_field_words(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
Obtain an iterator of words in the named field.
sourcepub fn iter_field_lines(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
pub fn iter_field_lines(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
Obtain an iterator of lines in the named field.
sourcepub fn iter_field_comma_delimited(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
pub fn iter_field_comma_delimited(
&self,
name: &str
) -> Option<Box<dyn Iterator<Item = &str>>>
Obtain an iterator of comma-delimited values in the named field.
sourcepub fn as_str_hash_map(&self) -> HashMap<&str, &str>
pub fn as_str_hash_map(&self) -> HashMap<&str, &str>
Convert this paragraph to a HashMap.
Values will be the string normalization of the field value, including newlines and leading whitespace.
If a field occurs multiple times, its last value will be recorded in the returned map.
sourcepub fn write<W: Write>(&self, writer: &mut W) -> Result<()>
pub fn write<W: Write>(&self, writer: &mut W) -> Result<()>
Serialize the paragraph to a writer.
A trailing newline is written as part of the final field. However, an extra newline is not present. So if serializing multiple paragraphs, an additional line break must be written to effectively terminate this paragraph if the writer is not at EOF.
Trait Implementations
sourceimpl<'a> Clone for ControlParagraph<'a>
impl<'a> Clone for ControlParagraph<'a>
sourcefn clone(&self) -> ControlParagraph<'a>
fn clone(&self) -> ControlParagraph<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> Debug for ControlParagraph<'a>
impl<'a> Debug for ControlParagraph<'a>
sourceimpl<'a> Default for ControlParagraph<'a>
impl<'a> Default for ControlParagraph<'a>
sourcefn default() -> ControlParagraph<'a>
fn default() -> ControlParagraph<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> From<BinaryPackageControlFile<'a>> for ControlParagraph<'a>
impl<'a> From<BinaryPackageControlFile<'a>> for ControlParagraph<'a>
sourcefn from(cf: BinaryPackageControlFile<'a>) -> Self
fn from(cf: BinaryPackageControlFile<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<ControlParagraph<'a>> for BinaryPackageControlFile<'a>
impl<'a> From<ControlParagraph<'a>> for BinaryPackageControlFile<'a>
sourcefn from(paragraph: ControlParagraph<'a>) -> Self
fn from(paragraph: ControlParagraph<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<ControlParagraph<'a>> for DebianSourceControlFile<'a>
impl<'a> From<ControlParagraph<'a>> for DebianSourceControlFile<'a>
sourcefn from(paragraph: ControlParagraph<'a>) -> Self
fn from(paragraph: ControlParagraph<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<ControlParagraph<'a>> for ReleaseFile<'a>
impl<'a> From<ControlParagraph<'a>> for ReleaseFile<'a>
sourcefn from(paragraph: ControlParagraph<'a>) -> Self
fn from(paragraph: ControlParagraph<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<DebianSourceControlFile<'a>> for ControlParagraph<'a>
impl<'a> From<DebianSourceControlFile<'a>> for ControlParagraph<'a>
sourcefn from(cf: DebianSourceControlFile<'a>) -> Self
fn from(cf: DebianSourceControlFile<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<ReleaseFile<'a>> for ControlParagraph<'a>
impl<'a> From<ReleaseFile<'a>> for ControlParagraph<'a>
sourcefn from(release: ReleaseFile<'a>) -> Self
fn from(release: ReleaseFile<'a>) -> Self
Converts to this type from the input type.
sourceimpl<'a> Hash for ControlParagraph<'a>
impl<'a> Hash for ControlParagraph<'a>
sourceimpl<'a> Ord for ControlParagraph<'a>
impl<'a> Ord for ControlParagraph<'a>
sourceimpl<'a> PartialEq<ControlParagraph<'a>> for ControlParagraph<'a>
impl<'a> PartialEq<ControlParagraph<'a>> for ControlParagraph<'a>
sourcefn eq(&self, other: &ControlParagraph<'a>) -> bool
fn eq(&self, other: &ControlParagraph<'a>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ControlParagraph<'a>) -> bool
fn ne(&self, other: &ControlParagraph<'a>) -> bool
This method tests for !=.
sourceimpl<'a> PartialOrd<ControlParagraph<'a>> for ControlParagraph<'a>
impl<'a> PartialOrd<ControlParagraph<'a>> for ControlParagraph<'a>
sourcefn partial_cmp(&self, other: &ControlParagraph<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &ControlParagraph<'a>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl<'a> ToString for ControlParagraph<'a>
impl<'a> ToString for ControlParagraph<'a>
impl<'a> Eq for ControlParagraph<'a>
impl<'a> StructuralEq for ControlParagraph<'a>
impl<'a> StructuralPartialEq for ControlParagraph<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for ControlParagraph<'a>
impl<'a> Send for ControlParagraph<'a>
impl<'a> Sync for ControlParagraph<'a>
impl<'a> Unpin for ControlParagraph<'a>
impl<'a> UnwindSafe for ControlParagraph<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more