Function notmuch_sys::notmuch_message_remove_tag
[−]
[src]
pub unsafe extern "C" fn notmuch_message_remove_tag(
message: *mut notmuch_message_t,
tag: *const c_char
) -> notmuch_status_t
Remove a tag from the given message.
Return value:
notmuch_status_t::SUCCESS
: Tag successfully removed from messagenotmuch_status_t::NULL_POINTER
: The 'tag' argument is NULLnotmuch_status_t::TAG_TOO_LONG
: The length of 'tag' is too long (exceedsTAG_MAX
)notmuch_status_t::READ_ONLY_DATABASE
: Database was opened in read-only mode so message cannot be modified.