usecrate::FullContext;/// A link to a twee passage contained within a twee passage
#[derive(Debug, Eq, PartialEq)]pubstructTwineLink{/// The name of the passage this link points to
pubtarget: String,
/// The context of the link
pubcontext: FullContext,
}implTwineLink{/// Creates a new link with a default [`Position`]
////// [`Position`]: enum.Position.html
pubfnnew(target: String, context: FullContext)->Self{
TwineLink {
target,
context,}}}