/// Link preview data extracted from a URL.
#[derive(Clone, Debug)]pubstructLinkPreview{puburl: String,
pubtitle:Option<String>,
pubdescription:Option<String>,
pubimage_url:Option<String>,
pubsite_name:Option<String>,
}// Link preview fetching will be implemented when URL preview
// APIs are integrated. For now, this module defines the types.