Skip to main content

IssueDetail

Struct IssueDetail 

Source
pub struct IssueDetail {
Show 18 fields pub id: String, pub project: String, pub title: String, pub state: String, pub priority: String, pub properties: BTreeMap<String, String>, pub org_tags: Vec<String>, pub tags: Vec<String>, pub blocked_by: Vec<String>, pub deeds: Vec<String>, pub parent: Option<String>, pub claimed_by: Option<String>, pub claimed_at: Option<String>, pub file: String, pub line_start: usize, pub line_end: usize, pub body: String, pub logbook: Vec<LogbookLine>,
}
Expand description

One issue as a detail card: properties, tags, file range, body, and logbook.

Fields§

§id: String

Issue id, <project>-<suffix>.

§project: String

Project the heading lives in.

§title: String

Heading title, without tags.

§state: String

TODO keyword on the heading.

§priority: String

Priority cookie as a one-character string.

§properties: BTreeMap<String, String>

Property drawer, including planning keys held in the map.

§org_tags: Vec<String>

Tags written on the heading itself.

§tags: Vec<String>

Combined heading tags and :VISSUE_TAGS:.

§blocked_by: Vec<String>

Ids listed in :BLOCKED_BY:.

§deeds: Vec<String>

Deed accessions listed in :DEEDS:.

Typed beside blocked_by rather than left in properties for the same reason: a client that paints what an issue produced should not have to know how the drawer spells a list.

§parent: Option<String>

:PARENT: id, when set.

§claimed_by: Option<String>

Identity holding the issue, when claimed.

§claimed_at: Option<String>

Org timestamp of the claim.

§file: String

path:line_start-line_end of the heading in its issues.org.

§line_start: usize

1-based first line of the heading in the file.

§line_end: usize

1-based last line of the heading in the file.

§body: String

Prose under the heading, without the property drawer or logbook.

Carried here so a caller that fetched the detail has what the issue asks for, rather than a file path and a line range to go read.

§logbook: Vec<LogbookLine>

Logbook lines on the heading, newest first.

Trait Implementations§

Source§

impl Clone for IssueDetail

Source§

fn clone(&self) -> IssueDetail

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for IssueDetail

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for IssueDetail

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<IssueDetail, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for IssueDetail

Source§

impl PartialEq for IssueDetail

Source§

fn eq(&self, other: &IssueDetail) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for IssueDetail

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for IssueDetail

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.