this repo has no description
at main 702 B view raw
1(*--------------------------------------------------------------------------- 2 Copyright (c) 2025 Anil Madhavapeddy. All rights reserved. 3 SPDX-License-Identifier: ISC 4 ---------------------------------------------------------------------------*) 5 6(** SearchSnippet type as defined in RFC 8621 Section 5 7 8 @canonical Jmap.Proto.Search_snippet *) 9 10type t = { 11 email_id : Proto_id.t; 12 (** The email this snippet is for. *) 13 subject : string option; 14 (** HTML snippet of matching subject text. *) 15 preview : string option; 16 (** HTML snippet of matching body text. *) 17} 18 19val email_id : t -> Proto_id.t 20val subject : t -> string option 21val preview : t -> string option 22 23val jsont : t Jsont.t