pub trait MarkExt: IsA<Mark> + Sealed + 'static {
// Provided methods
fn category(&self) -> GString { ... }
fn next(&self, category: Option<&str>) -> Option<Mark> { ... }
fn prev(&self, category: Option<&str>) -> Option<Mark> { ... }
}
Expand description
Trait containing all Mark
methods.
§Implementors
Mark
Returns the mark category.
§Returns
the category of the #GtkSourceMark.
Returns the next Mark
in the buffer or None
if the mark
was not added to a buffer.
If there is no next mark, None
will be returned.
If @category is None
, looks for marks of any category.
§category
a string specifying the mark category, or None
.
§Returns
the next #GtkSourceMark, or None
.
Returns the previous Mark
in the buffer or None
if the mark
was not added to a buffer.
If there is no previous mark, None
is returned.
If @category is None
, looks for marks of any category
§category
a string specifying the mark category, or None
.
§Returns
the previous #GtkSourceMark, or None
.